1
647556386
2026-01-21 ef96a52b953e3ce094bba9f644a00a3698e48726
1
已修改2个文件
42 ■■■■■ 文件已修改
项目代码/WIDESEA_WMSClient/src/views/record/stockQuantityChangeRecord.vue 36 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_OutboundService/OutboundPickingService.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ÏîÄ¿´úÂë/WIDESEA_WMSClient/src/views/record/stockQuantityChangeRecord.vue
@@ -34,11 +34,12 @@
        { title: "托盘号", field: "palleCode", type: "like" },
        { title: "物料编号", field: "materielCode", type: "like" },
        { title: "单据编号", field: "orderNo", type: "like" },
        { title: "入库条码", field: "barcode", type: "like" },
        // { title: "变动类型", field: "changeType", type: "selectList", dataKey: "stockChangeType", data: [], },
      ],
      [
        { title: "原条码", field: "originalSerilNumber", type: "like" },
        { title: "任务号", field: "taskNum", type: "like" },
        { title: "出库原条码", field: "originalSerilNumber", type: "like" },
        { title: "拆包新条码", field: "newSerilNumber", type: "like" },
        { title: "批次号", field: "batchNo", type: "like" },
      ],
    ]);
@@ -59,12 +60,6 @@
        type: "string",
        width: 90,
        align: "left",
      }, {
        field: "taskNum",
        title: "任务号",
        type: "string",
        width: 70,
        align: "left",
      },
      {
        field: "palleCode",
@@ -80,23 +75,30 @@
        width: 150,
        align: "left",
      },
      // {
      //   field: "materielName",
      //   title: "物料名称",
      //   type: "decimal",
      //   width: 90,
      //   align: "left",
      // },
      {
        field: "materielName",
        title: "物料名称",
        type: "decimal",
        width: 90,
        align: "left",
      },
      {
        field: "barcode",
        title: "入库条码",
        type: "string",
        width: 180,
        align: "left",
      },
      {
        field: "originalSerilNumber",
        title: "原条码",
        title: "出库原条码",
        type: "string",
        width: 180,
        align: "left",
      },
      {
        field: "newSerilNumber",
        title: "新条码",
        title: "拆包新条码",
        type: "string",
        width: 180,
        align: "left",
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_OutboundService/OutboundPickingService.cs
@@ -2322,6 +2322,10 @@
            {
                return WebResponseContent.Instance.Error("未找到满足出库条件的出库单");
            }
            if(outboundOrder.IsBatch == 0)
            {
                return WebResponseContent.Instance.Error("该单据不属于分批回传单据,不允许虚拟出入库");
            }
            //先清空单据虚拟出入库数量进行计算
            foreach (var item in outboundOrder.Details)
            {
@@ -2717,7 +2721,7 @@
                    List<Barcodes> documentsNOList = new List<Barcodes>();
                    if (!string.IsNullOrEmpty(item.ReturnJsonData))
                    {
                        barcodesList = JsonConvert.DeserializeObject<List<Barcodes>>(item.documentsNO) ?? new List<Barcodes>();
                        barcodesList = JsonConvert.DeserializeObject<List<Barcodes>>(item.ReturnJsonData) ?? new List<Barcodes>();
                    }
                    if (!string.IsNullOrEmpty(item.documentsNO) && item.documentsNO!="")
                    {