zhoufan 7 年 前
コミット
40ee1e24d2

File diff suppressed because it is too large
+ 86 - 79
codegit/CallCenterApi/CallCenterApi.DAL/T_Bus_WorkOrder.cs


+ 7 - 1
codegit/CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/workorder/WorkOrderController.cs

@@ -381,6 +381,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
381 381
             string buyaddress = RequestString.GetFormString("buyaddress");
382 382
             //产品类别
383 383
             string producttype = RequestString.GetFormString("producttype");
384
+            //生产日期
385
+            string productdate = RequestString.GetFormString("productdate");
384 386
             //生产批号
385 387
             string batchnumber = RequestString.GetFormString("batchnumber");
386 388
             //使用日期
@@ -429,9 +431,10 @@ namespace CallCenterApi.Interface.Controllers.workorder
429 431
                 modelT_Bus_WorkOrder.F_GroupCode = code;//分组代码
430 432
                 modelT_Bus_WorkOrder.F_Content = content;//事件描述
431 433
                 modelT_Bus_WorkOrder.F_ProductName = productname;//产品名称
434
+                modelT_Bus_WorkOrder.F_ProductDate = productdate;//生产日期
432 435
                 modelT_Bus_WorkOrder.F_BuyDate = buydate;//购买日期
433 436
                 modelT_Bus_WorkOrder.F_BuyAddress = buyaddress;//购买地点
434
-                modelT_Bus_WorkOrder.F_ProductType = producttype;//产品类
437
+                modelT_Bus_WorkOrder.F_ProductType = producttype;//产品类
435 438
                 modelT_Bus_WorkOrder.F_BatchNumber = batchnumber;//生产批号
436 439
                 modelT_Bus_WorkOrder.F_UserDate = userdate;//使用日期
437 440
                 modelT_Bus_WorkOrder.F_VIPPhone = vipphone;//专员号码
@@ -520,6 +523,8 @@ namespace CallCenterApi.Interface.Controllers.workorder
520 523
             string content = RequestString.GetFormString("content");
521 524
             //产品名称
522 525
             string productname = RequestString.GetFormString("productname");
526
+            //生产日期
527
+            string productdate = RequestString.GetFormString("productdate");
523 528
             //购买日期
524 529
             string buydate = RequestString.GetFormString("buydate");
525 530
             //购买地点
@@ -581,6 +586,7 @@ namespace CallCenterApi.Interface.Controllers.workorder
581 586
                     }
582 587
                     modelT_Bus_WorkOrder.F_Content = content;//事件描述
583 588
                     modelT_Bus_WorkOrder.F_ProductName = productname;//产品名称
589
+                    modelT_Bus_WorkOrder.F_ProductDate = productdate;//生产日期
584 590
                     modelT_Bus_WorkOrder.F_BuyDate = buydate;//购买日期
585 591
                     modelT_Bus_WorkOrder.F_BuyAddress = buyaddress;//购买地点
586 592
                     modelT_Bus_WorkOrder.F_ProductType = producttype;//产品类别

+ 9 - 0
codegit/CallCenterApi/CallCenterApi.Model/T_Bus_WorkOrder.cs

@@ -20,6 +20,7 @@ namespace CallCenterApi.Model
20 20
         private string _f_file;
21 21
         private int? _f_source;
22 22
         private string _f_productname;
23
+        private string _f_productdate;
23 24
         private string _f_buydate;
24 25
         private string _f_buyaddress;
25 26
         private string _f_producttype;
@@ -133,6 +134,14 @@ namespace CallCenterApi.Model
133 134
             get { return _f_productname; }
134 135
         }
135 136
         /// <summary>
137
+        /// 生产日期
138
+        /// </summary>
139
+        public string F_ProductDate
140
+        {
141
+            set { _f_productdate = value; }
142
+            get { return _f_productdate; }
143
+        }
144
+        /// <summary>
136 145
         /// 购买日期
137 146
         /// </summary>
138 147
         public string F_BuyDate