Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 SugarLogic 和 SugarCRM 的新手。我正在尝试向字段添加逻辑。基本上我有一个增值税复选框字段,如果勾选,我希望总成本字段乘以 23%。如果未勾选,则不添加增值税。我将不胜感激给予的任何帮助。下面的代码对我不起作用。
ifElse(equal($vat_applicable,true),multiply($total_cost,0.023))
谢谢 x
由于这是一个“if/else”SugarLogic 函数,因此您需要完成公式的其余部分 (else)。将此公式添加到“总成本”字段。
ifElse(equal($vat_applicable,true), multiply($total_cost,0.23), $total_cost )