【发布时间】:2020-01-09 21:43:15
【问题描述】:
我有一个计算器,我需要在提交按钮上显示其输出。输出来自使用 deluge 脚本在 Zoho Workflow 模块中运行的决策树。
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 表单中的决策框(文本)。
【问题讨论】:
标签: zoho