if {?type} ='Rent' then
(if {realestate_repository_plantclass.rentprice}<>0 then
(
if{realestate_repository_plantclass.rentprice}<>55.50 then
{realestate_repository_plantclass.rentprice}
else
nn;
)
)
else
(
if {realestate_repository_plantclass.sellprice}<>0 then
{realestate_repository_plantclass.sellprice}
)
答案 0 :(得分:0)
if {?type} ='Rent' then (
if {realestate_repository_plantclass.rentprice}<>0 then (
if{realestate_repository_plantclass.rentprice}<>55.50 then
{realestate_repository_plantclass.rentprice}
else
nn; //you don't need a semi-colon here; also, what is 'nn'?
)
)
else (
if {realestate_repository_plantclass.sellprice}<>0 then
{realestate_repository_plantclass.sellprice}
)