CloudConnect 应用程序有问题。我正在尝试在 REFORMAT 组件中编写转换代码,但if
功能存在问题。也许问题出在=
, 但我不知道如何解决它。
function integer transform() {
$out.0.date = str2date($in.0.Date, "yyyy-MM-dd");
$out.0.price = str2decimal($in.0.Amount);
if ($in.0.Purpose = 'A') {return "Facebook";} else if ($in.0.Purpose = 'B') {return "Google Adwords";} else {return SKIP;};
return ALL;
}