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}
)
问问题
269 次
1 回答
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}
)
于 2012-11-14T13:40:55.200 回答