服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2 天以前 14fe35fa249082130b534243e312cd128d585f8a
Tiger.Business.WMS/Common/Preparation.cs
@@ -1,4 +1,5 @@
using Rhea.Common;
using Microsoft.IdentityModel.Tokens;
using Rhea.Common;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -139,7 +140,7 @@
                        {
                            AUTH_ORG = OrgCode,
                            ORDER_NO = Order.ORDER_NO,
                            ORDER_LINE = Order.Details.Count == 0 ? "1" : (Order.Details.Max(q => q.LINE_CODE.ToInt32()) + 1).ToString(),
                            ORDER_LINE = Order.Details.IsNullOrEmpty() ? "1" : (Order.Details.Max(q => q.LINE_CODE.ToInt32()) + 1).ToString(),
                            ITEM_CODE = sdtl.ITEM_CODE,
                            SUBITEM_CODE = sdtl.SUBITEM_CODE,
                            UNIT = sdtl.UNIT,