批量收货

master
e 2019-07-22 10:52:36 +08:00
parent b6d3903bc8
commit 7f85ab99a5
2 changed files with 16 additions and 6 deletions

View File

@ -564,8 +564,18 @@ public class WmInQmIController extends BaseController {
if (StringUtil.isNotEmpty(jeecgDemo.getGoodsWqmCount())) {
WmInQmIEntity wminqm = new WmInQmIEntity();
wminqm.setQmOkQuat(jeecgDemo.getGoodsWqmCount());
this.doAdd(wminqm,request);
wminqm.setImNoticeItem(jeecgDemo.getId());
wminqm.setGoodsId(jeecgDemo.getGoodsCode());
wminqm.setProData(DateUtils.date2Str(jeecgDemo.getGoodsPrdData(),DateUtils.date_sdf));
wminqm.setImNoticeId(jeecgDemo.getImNoticeId());
wminqm.setGoodsName(jeecgDemo.getGoodsName());
wminqm.setBinId(jeecgDemo.getBinPlan());
wminqm.setGoodsUnit(jeecgDemo.getGoodsUnit());
wminqm.setGoodsBatch(jeecgDemo.getGoodsBatch());
if(StringUtil.isEmpty(wminqm.getGoodsBatch())){
wminqm.setGoodsBatch(wminqm.getProData());
}
this.doAdd(wminqm,request);
}
}

View File

@ -22,10 +22,10 @@
<t:dgCol title="商品名称" field="goodsName" query="true" queryMode="single" width="250"></t:dgCol>
<t:dgCol title="预约数量" field="goodsCount" queryMode="single" width="80"></t:dgCol>
<t:dgCol title="已登记数量" field="goodsQmCount" queryMode="single" width="80"></t:dgCol>
<t:dgCol title="未收货数量" field="goodsWqmCount" extendParams="editor:'text'" queryMode="single" width="80"></t:dgCol>
<t:dgCol title="生产日期" field="goodsPrdData" extendParams="editor:'datebox'" formatter="yyyy-MM-dd " queryMode="single" width="80"></t:dgCol>
<t:dgCol title="批次" field="goodsBatch" extendParams="editor:'text'" queryMode="single" width="80"></t:dgCol>
<t:dgCol title="储位" field="binPlan" extendParams="editor:'text'" queryMode="single" width="80"></t:dgCol>
<t:dgCol title="未收货数量" field="goodsWqmCount" extendParams="editor:'text'" queryMode="single" width="120"></t:dgCol>
<t:dgCol title="生产日期" field="goodsPrdData" extendParams="editor:'datebox'" formatter="yyyy-MM-dd " queryMode="single" width="120"></t:dgCol>
<t:dgCol title="批次" field="goodsBatch" extendParams="editor:'text'" queryMode="single" width="120"></t:dgCol>
<t:dgCol title="储位" field="binPlan" extendParams="editor:'text'" queryMode="single" width="120"></t:dgCol>
<t:dgCol title="单位" field="goodsUnit" queryMode="single" width="50"></t:dgCol>
<%-- <t:dgDelOpt title="删除" url="wmInQmIController.do?doDel&id={id}" urlclass="ace_button" urlfont="fa-trash-o"/> --%>