Revert "物料单据下拉框字段选项,设置修改为标题值"

This reverts commit 5f4aff75ac.
This commit is contained in:
pan-houxiang 2025-12-16 15:34:36 +08:00
parent 5f4aff75ac
commit 6059f6c430
1 changed files with 2 additions and 2 deletions

View File

@ -40,12 +40,12 @@ public class ApBusBillSubmitToFwOp extends AbstractOperationServicePlugIn {
if (data != null) { if (data != null) {
String requestid = data.getString("requestid"); String requestid = data.getString("requestid");
bill.set("tqq9_fwrequestid", requestid); bill.set("tqq9_fwrequestid", requestid);
bill.set("tqq9_fwstate", "待审核"); bill.set("tqq9_fwstate", "B");
SaveServiceHelper.save(new DynamicObject[]{bill}); SaveServiceHelper.save(new DynamicObject[]{bill});
} }
String tqq9_fwrequestid = bill.getString("tqq9_fwrequestid"); String tqq9_fwrequestid = bill.getString("tqq9_fwrequestid");
if (StringUtils.isNotBlank(tqq9_fwrequestid)) {//驳回后提交修改泛微审批状态 if (StringUtils.isNotBlank(tqq9_fwrequestid)) {//驳回后提交修改泛微审批状态
bill.set("tqq9_fwstate", "待审核"); bill.set("tqq9_fwstate", "B");
SaveServiceHelper.save(new DynamicObject[]{bill}); SaveServiceHelper.save(new DynamicObject[]{bill});
} }
} }