コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
5963 ビュー

Hello Community,

I stumbled over the following. I have an input named BNS (for bonus).

And I have a Phyton condition: result = inputs.BNS.amount > 0

and I tried the second version of it: result = inputs.BNS.amount is not None 

Based on whether it is true the calculation should activate. 

When there is an BNS input in a payroll slip, everything works. If there is no BNS input, i get the error in subject. Please, advise how to skip this rule execution when there is no BNS input

アバター
破棄
最善の回答

Hello,

You can use try and except

example

try:

     result = inputs.BNS.amount
except:

     result = 0

アバター
破棄
最善の回答

Hi

make the conditions based on = always true

computation:

Amount Type = python code

python code = result = inputs.BNS1.amount * 1


and in the inputs tap add

description= Bounce

Code= BNS1


Hope that help


アバター
破棄
関連投稿 返信 ビュー 活動
1
5月 25
1275
1
3月 25
1283
0
2月 25
1534
1
12月 24
1924
0
11月 24
108