Hi all,
I'm a newbie, learned very few coding skills. I will appreciate very much if someone can solve this problem.
I've added new field "bedroomoriginalCount" (Type= Integer) in RealEstateProperty thru the Entity Manager, then 3 new fields will be added by the system automatically in RealEstateRequest, which are:
Since some properties are for sale & rent at the same time, I tried to add extra field for price of rental, which field Name= priceRental (Type= Currency), into RealEstateProperty thru Entity Manger, then a set of 3 fields have been created in RealEstateProperty like price, which are:
but it didn't work the same as Integer to have new fields added in RealEstateRequest by the system. Related to price, fields are found in RealEstateRequest are:
Fields I want to add in RealEstateRequest, and it has to work with native property matching function:
I'm a newbie, learned very few coding skills. I will appreciate very much if someone can solve this problem.
I've added new field "bedroomoriginalCount" (Type= Integer) in RealEstateProperty thru the Entity Manager, then 3 new fields will be added by the system automatically in RealEstateRequest, which are:
- bedroomoriginalCount (Type= Range Integer)
- fromBedroomoriginalCount (Type= Integer)
- toBedroomoriginalCount (Type= Integer)
Since some properties are for sale & rent at the same time, I tried to add extra field for price of rental, which field Name= priceRental (Type= Currency), into RealEstateProperty thru Entity Manger, then a set of 3 fields have been created in RealEstateProperty like price, which are:
- priceRental (Type= Currency)
- priceRentalConverted (Type= Currency (Converted))
- priceRentalCurrency (Type= Varchar)
but it didn't work the same as Integer to have new fields added in RealEstateRequest by the system. Related to price, fields are found in RealEstateRequest are:
- price (Type= Range Currency)
- fromPrice (Type= Currency)
- fromPriceConverted (Type= Currency (Converted))
- fromPriceCurrency (Type= Varchar)
- toPrice (Type= Currency)
- toPriceConverted (Type= Currency (Converted))
- toPriceCurrency (Type= Varchar)
Fields I want to add in RealEstateRequest, and it has to work with native property matching function:
- priceRental (Type= Range Currency)
- fromPriceRental (Type= Currency)
- fromPriceRentalConverted (Type= Currency (Converted))
- fromPriceRentalCurrency (Type= Varchar)
- toPriceRental (Type= Currency)
- toPriceRentalConverted (Type= Currency (Converted))
- toPriceRentalCurrency (Type= Varchar)