sjz
2025-05-09 701edfd77c2dbfce5a77bd047c7d93777a3918d5
修复SRM传条码报错
已添加1个文件
已修改3个文件
20 ■■■■ 文件已修改
.vs/VSWorkspaceState.json 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MES.Service/service/SRM/MesDeliveryNoteBarcodeManager.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MESApplication/Controllers/SRM/MesDeliveryNoteBarcodeController.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardInterface/MESApplication/Controllers/WomcaaController.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.vs/VSWorkspaceState.json
对比新文件
@@ -0,0 +1,6 @@
{
  "ExpandedNodes": [
    ""
  ],
  "PreviewInSolutionExplorer": false
}
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);