我有一个计算器的输出,我需要显示在提交按钮。输出来自使用deluge脚本在Zoho工作流模块中运行的决策树。
1)我尝试将输出作为字符串存储在工作流中,然后将其传递回表单域
2)尝试为输出显示创建zoho页面,但无法链接工作流的输出和zoho页面
if(input.Price > input.Income)
{
if(input.EMI_Exp < 0.6)
{
info "Take the Personal Loan as you can easily manage the EMI.
If you choose a credit card then you will mess your cashflow";
}
else
{
info "No Personal Loan, No Using Credit Card. You are stretching
yourself by purchasing this";
}
}
else需要将信息信息传递到Zoho表单中的决策框(文本)。
发布于 2019-09-25 19:39:16
页面:
response = FormName[ID == recordID.toLong()]无状态表单:
response = FormName[ID == recordID.toLong()]; if(response.Price > response.Income) {
if(response.EMI_Exp < 0.6)
{
input.Message = "Take the Personal Loan as you can easily manage the EMI.
If you choose a credit card then you will mess your cashflow";
}
else
{
input.Message = "No Personal Loan, No Using Credit Card. You are stretching
yourself by purchasing this";
} }
else{ input.Message= "Thank you !!!" }在提交计算器表单时使用以下脚本: openUrl("#Form:formLinkName?zc_LoadIn=dialog&recordID="+input.ID,“
希望这能对你有所帮助。
https://stackoverflow.com/questions/57831723
复制相似问题