我正在准备joltspecification,其中我需要实现if else条件。但是我无法达到预期的产量。请帮助我。
注意事项:
1.如果credits_type
等于MARGIN
或null
,则cost
= pretax
1.否则cost
+ creditsamount
= pretax
输入:
[
{
"cost": "10",
"credits_amount": "5",
"credits_type": "MARGIN"
}
]
预期输出:
[
{
"cost": "10",
"credits_amount": "5",
"credits_type": "MARGIN",
"pretax": "10"
}
]
- 这里
pretax
是10,因为credits_type
=MARGIN
谢谢
1条答案
按热度按时间nszi6y051#
您可以使用以下转换