Ver código fonte

添加报工批量字段。

tangdi 2 anos atrás
pai
commit
3d14d894f6

+ 1 - 0
MicroServices/Business/Business.Application/ResourceExamineManagement/ResourceExamineAppService.cs

@@ -4029,6 +4029,7 @@ namespace Business.ResourceExamineManagement
                     woRouting.IsActive = true;
                     woRouting.CommentIndex = dtl.CommentIndex;
                     woRouting.CreateTime = DateTime.Now;
+                    woRouting.PackingQty = dtl.PackingQty.GetValueOrDefault();
                     workOrdRoutings.Add(woRouting);
                 }
                 long fid = GetParentMo(morders, item);

+ 6 - 0
MicroServices/Business/Business.Domain/StructuredDB/Production/RoutingOpDetail.cs

@@ -85,5 +85,11 @@ namespace Business.Domain
         /// </summary>
         [Comment("是否有效")]
         public bool IsActive { get; set; }
+
+        /// <summary>
+        /// 报工批量
+        /// </summary>
+        [Comment("报工批量")]
+        public decimal? PackingQty { get; set; }
     }
 }

+ 6 - 0
MicroServices/Business/Business.Domain/StructuredDB/Production/WorkOrdRouting.cs

@@ -128,5 +128,11 @@ namespace Business.Domain
         /// </summary>
         [Comment("工单主键")]
         public long WorkOrdMasterRecID { get; set; }
+
+        /// <summary>
+        /// 报工批量
+        /// </summary>
+        [Comment("报工批量")]
+        public decimal? PackingQty { get; set; }
     }
 }