【物料变更】物料名称加_copy

This commit is contained in:
tanfengling@x-ri.com 2025-12-05 17:37:54 +08:00
parent 2cda20a197
commit b6c5141eb9
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ public class MaterialBillPlugin extends AbstractBillPlugIn {
// String copySrcBillNumber = this.getPageCache().get("copySrcBillNumber"); // String copySrcBillNumber = this.getPageCache().get("copySrcBillNumber");
DynamicObject dataEntity = this.getModel().getDataEntity(true); DynamicObject dataEntity = this.getModel().getDataEntity(true);
dataEntity.set("number", copySrcBillNumber + "_copy"); dataEntity.set("number", copySrcBillNumber + "_copy");
dataEntity.set("name", copySrcBillName); dataEntity.set("name", copySrcBillName + "_copy");
dataEntity.set("tqq9_srcnumber", copySrcBillNumber); dataEntity.set("tqq9_srcnumber", copySrcBillNumber);
this.getView().invokeOperation("save"); this.getView().invokeOperation("save");
} }