Browse Source

称重展示-袋数

HuKang 1 year ago
parent
commit
5b7f9f1409

+ 1 - 0
warewms-ams/src/main/java/com/ruoyi/ams/inv/service/impl/InvLotLocIdServiceImpl.java

@@ -710,6 +710,7 @@ public class InvLotLocIdServiceImpl implements IInvLotLocIdService {
         invLotAttMapper.updateInvLotAtt(invLotAtt);
         // 插入复称表
         WeighData weighData = new WeighData();
+        weighData.setNum(lotLocId.getQty().longValue());
         weighData.setLotnum(invLotAtt.getLotnum());
         iWeighDataService.insertWeighData(weighData);
         return AjaxResult.success();

+ 1 - 1
warewms-ams/src/main/resources/mapper/weighData/WeighDataMapper.xml

@@ -45,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </sql>
 
     <select id="selectWeighDataList" parameterType="WeighData" resultMap="WeighDataResult">
-        SELECT id,t1.lotnum,lotatt01,lotatt02,lotatt03,lotatt04,lotatt05,lotatt06,lotatt07,lotatt08,lotatt09,lotatt10
+        SELECT id,t2.num,t1.lotnum,lotatt01,lotatt02,lotatt03,lotatt04,lotatt05,lotatt06,lotatt07,lotatt08,lotatt09,lotatt10
              ,lotatt11,lotatt12,lotatt13,lotatt14,lotatt15,lotatt16,lotatt17,lotatt18,t2.create_time
         FROM  weigh_data t2
         LEFT JOIN inv_lot_att t1 ON t2.lotnum=t1.lotnum