出库单关联领料申请单二开修改数量赋值
This commit is contained in:
parent
8117925d64
commit
8cca233a97
|
@ -142,7 +142,8 @@ public class MaterialOutApplyPluginExt extends AbstractBillPlugIn implements Bef
|
|||
newEntry.set("assmeasureunit", applyEntry.get("assmeasureunit"));
|
||||
newEntry.set("assqty", applyEntry.get("assqty"));
|
||||
newEntry.set("measureunit", applyEntry.get("measureunit"));
|
||||
newEntry.set("qty", applyEntry.get("restqty"));
|
||||
// newEntry.set("qty", applyEntry.get("restqty"));//二开注释掉的
|
||||
newEntry.set("qty", applyEntry.get("qty"));//二开修改数量数值
|
||||
newEntry.set("applyqty", applyEntry.get("qty"));
|
||||
newEntry.set("price", applyEntry.get("price"));
|
||||
newEntry.set("amount", applyEntry.get("amount"));
|
||||
|
@ -180,7 +181,8 @@ public class MaterialOutApplyPluginExt extends AbstractBillPlugIn implements Bef
|
|||
newEntry.set("assmeasureunit", applyEntry.get("assmeasureunit"));
|
||||
newEntry.set("assqty", applyEntry.get("assqty"));
|
||||
newEntry.set("measureunit", applyEntry.get("measureunit"));
|
||||
newEntry.set("qty", applyEntry.get("restqty"));
|
||||
// newEntry.set("qty", applyEntry.get("restqty"));//二开注释掉的
|
||||
newEntry.set("qty", applyEntry.get("qty"));//二开修改数量数值
|
||||
newEntry.set("applyqty", applyEntry.get("qty"));
|
||||
newEntry.set("price", applyEntry.get("price"));
|
||||
newEntry.set("amount", applyEntry.get("amount"));
|
||||
|
|
Loading…
Reference in New Issue