ee7585e61f2a69600dc8c3e7f33b9861460d316f..597f8e08e6264b2143454e40a7be553d1e8b6df7
2025-05-09 sjz
2025/5/9 沈
597f8e 对比 | 目录
2025-05-09 sjz
修复SRM传条码报错
701edf 对比 | 目录
已修改3个文件
14 ■■■■ 文件已修改
StandardInterface/MES.Service/service/SRM/MesDeliveryNoteBarcodeManager.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MESApplication/Controllers/SRM/MesDeliveryNoteBarcodeController.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MESApplication/Controllers/WomcaaController.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MES.Service/service/SRM/MesDeliveryNoteBarcodeManager.cs
@@ -74,7 +74,6 @@
            mesDeliveryBarcode.Id = single.Id;
        }
        mesDeliveryBarcode.DeliveryNo = barcode.DeliveryNo;
        mesDeliveryBarcode.ProductCode = barcode.ProductCode;
StandardInterface/MESApplication/Controllers/SRM/MesDeliveryNoteBarcodeController.cs
@@ -34,11 +34,15 @@
        try
        {
            dynamic resultInfos = new ExpandoObject();
            PrintBarcode save = m.Save(barcode);
            var save = m.Save(barcode);
            resultInfos = save;
            entity.Result = 1;
            entity.Result = 0;
            if (save)
            {
                entity.Result = 1;
            }
            entity.DealWith = 1;
            _manager.save(entity);
StandardInterface/MESApplication/Controllers/WomcaaController.cs
@@ -41,7 +41,10 @@
            entity.Result = 0;
            if (save) entity.Result = 1;
            if (save)
            {
                entity.Result = 1;
            }
            entity.DealWith = 1;
            _manager.save(entity);