服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-10-17 b0bbf803a56ced1d89bd7c966686983259eae1e0
优化事务写法
已修改25个文件
50 ■■■■ 文件已修改
Tiger.Controllers.MES/Controllers/MESController.CollectNode.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.MES/Controllers/MESController.PackingNode.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.MES/Controllers/MESController.TestNode.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.CustSupplyChecking.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.CustSupplyCheckingNew.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.CustomerSupply.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.CustomerSupplyNew.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.InFinished.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.InMatStorage.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.InProductionReturn.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.InReceipt.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.ItemQuery.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.LocationTransfer.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OtherInLocation.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OtherInLocationChecking.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutNoBillcode.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutOther.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutSale.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutSplit.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutTransfer.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.OutWordOrder.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.PDACount.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.ProductionMaterialReq.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.Resell.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.WMS/Controllers/WMSController.ShelfRemote.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Controllers.MES/Controllers/MESController.CollectNode.cs
@@ -37,7 +37,7 @@
                    iBiz.MES.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.IO.InvalidDataException ex)
            {
Tiger.Controllers.MES/Controllers/MESController.PackingNode.cs
@@ -36,7 +36,7 @@
                    iBiz.MES.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.IO.InvalidDataException ex)
            {
Tiger.Controllers.MES/Controllers/MESController.TestNode.cs
@@ -36,7 +36,7 @@
                    iBiz.MES.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.IO.InvalidDataException ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.CustSupplyChecking.cs
@@ -36,7 +36,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.CustSupplyCheckingNew.cs
@@ -34,7 +34,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.CustomerSupply.cs
@@ -36,7 +36,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.CustomerSupplyNew.cs
@@ -37,7 +37,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.InFinished.cs
@@ -37,7 +37,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.InMatStorage.cs
@@ -35,7 +35,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.InProductionReturn.cs
@@ -34,7 +34,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.InReceipt.cs
@@ -37,7 +37,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.ItemQuery.cs
@@ -29,7 +29,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.LocationTransfer.cs
@@ -29,7 +29,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OtherInLocation.cs
@@ -35,7 +35,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OtherInLocationChecking.cs
@@ -37,7 +37,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutNoBillcode.cs
@@ -35,7 +35,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutOther.cs
@@ -28,7 +28,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutSale.cs
@@ -29,7 +29,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutSplit.cs
@@ -37,7 +37,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutTransfer.cs
@@ -31,7 +31,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.OutWordOrder.cs
@@ -32,7 +32,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.PDACount.cs
@@ -28,7 +28,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.ProductionMaterialReq.cs
@@ -32,7 +32,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.Resell.cs
@@ -36,7 +36,7 @@
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {
Tiger.Controllers.WMS/Controllers/WMSController.ShelfRemote.cs
@@ -35,7 +35,7 @@
                    trans = DI.Resolve<IShelfRemote>().Init(action.ID, action.Data?.USER_CODE, Request.Host.Value);
                    iBiz.WMS.Context.NewTransaction(HttpContext, trans, false);
                }
                response = action.GetResponse(trans);
                response = action.GetResponse();
            }
            catch (System.Exception ex)
            {