xiacm 3 лет назад
Родитель
Сommit
c4eed4b464

+ 21 - 1
wwwroot/mes/list.ashx

@@ -21,6 +21,26 @@ public class list : IHttpHandler, IReadOnlySessionState
 
             switch (context.Request["m"].ToString())
             {
+                case "getStopReason":
+                    {
+                        //停工原因
+                        using (IDataAccess conn = DataAccess.Create())
+                        {
+                            string sqlStr = @"SELECT t.dictionaryid
+                                                     ,t.dictionaryvalue
+                                                  FROM tp_mst_datadictionary t
+                                                 WHERE t.valueflag = 1
+                                                   AND t.dictionarytype = 'TPC110'
+                                                   and t.accountid = @accountid@
+                                                 ORDER BY t.displayno";
+                            List<CDAParameter> sqlPara = new List<CDAParameter>();
+                            sqlPara.Add(new CDAParameter("accountid", HttpContext.Current.Session["accountId"]));
+
+                            DataTable dt = conn.ExecuteDatatable(sqlStr, sqlPara.ToArray());
+                            context.Response.Write(dt.ToJson());
+                        }
+                        break;
+                    }
                 case "getgoods":
                     {
                         //产品型号
@@ -39,7 +59,7 @@ public class list : IHttpHandler, IReadOnlySessionState
                             DataTable dt = conn.ExecuteDatatable(sqlStr, sqlPara.ToArray());
                             context.Response.Write(dt.ToJson());
                         }
-                        break; ; ; ;
+                        break;
                     }
                 case "getMonthplan":
                     {

+ 19 - 14
wwwroot/mes/pc/glineplanmold/glineplanmold.ashx

@@ -483,20 +483,25 @@ public class glineplanmold : IHttpHandler, IReadOnlySessionState
             //物料编码
             string sap_sku = form["sap_sku"];
             string sqlStr = @"SELECT gpm.moldid AS sid
-                                      ,to_char(gpm.mold_begindate,'YYYY-MM-DD') mold_begindate
-                                      ,to_char(gpm.mold_enddate,'YYYY-MM-DD') mold_enddate
-                                      ,gpm.groutinglinecode
-                                      ,gpm.groutingmouldcode
-                                      ,gpm.workshop || '车间' as workshop
-                                      ,gpm.sap_sku
-                                      ,gpm.std_count
-                                      ,gpm.day_grouting_num
-                                      ,gpm.remarks
-                                      ,mg.goodscode
-                                  FROM t_gline_plan_mold gpm
-                                  LEFT JOIN tp_mst_goods mg
-                                    ON gpm.goodsid = mg.goodsid
-                                 WHERE gpm.valueflag = 1
+                                  ,to_char(gpm.mold_begindate, 'YYYY-MM-DD') mold_begindate
+                                  ,to_char(gpm.mold_enddate, 'YYYY-MM-DD') mold_enddate
+                                  ,gpm.groutinglinecode
+                                  ,gpm.groutingmouldcode
+                                  ,gpm.workshop || '车间' AS workshop
+                                  ,gpm.sap_sku
+                                  ,gpm.std_count
+                                  ,gpm.day_grouting_num
+                                  ,gpm.remarks
+                                  ,gpm.mold_code
+                                  ,gpm.createtime
+                                  ,mg.goodscode
+                                  ,mu.username
+                              FROM t_gline_plan_mold gpm
+                              LEFT JOIN tp_mst_goods mg
+                                ON gpm.goodsid = mg.goodsid
+                              LEFT JOIN tp_mst_user mu
+                                ON gpm.createuserid = mu.userid
+                             WHERE gpm.valueflag = 1
                                    AND gpm.accountid = @accountid@";
             List<CDAParameter> sqlPara = new List<CDAParameter>();
             sqlPara.Add(new CDAParameter("accountid", HttpContext.Current.Session["accountId"]));

+ 8 - 6
wwwroot/mes/pc/glineplanmold/glineplanmold_index.html

@@ -31,15 +31,14 @@
             <div id="glineplanmoldSearchDiv" style="display:block; padding: 10px;">
                 <form id="glineplanmoldForm">
                     <div>
-                        成型线:
-                        <input class="easyui-textbox" id="groutinglinecode" name="groutinglinecode" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
-                        模具编号:
-                        <input class="easyui-textbox" id="GROUTINGMOULDCODE" name="GROUTINGMOULDCODE" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
                         车间:
                         <input class="easyui-combobox" id="workshopMaster" name="workshopMaster" data-options="required:false,valueField:'value',textField:'text',editable:true,multiple:true,
                                data:[{'text': '1车间', 'value': '1'},{'text': '2车间', 'value': '2'},{'text': '3车间', 'value': '3'}]"
                                style=" width: 160px; height: 32px;">
-
+                        成型线:
+                        <input class="easyui-textbox" id="groutinglinecode" name="groutinglinecode" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
+                        模具编号:
+                        <input class="easyui-textbox" id="GROUTINGMOULDCODE" name="GROUTINGMOULDCODE" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
                         产品型号:
                         <input class="easyui-combobox" id="GOODSID" name="GOODSID" data-options="prompt:'',tipPosition:'top',url:'../../list.ashx?m=getgoods&select=1',method:'get',valueField:'GOODSID',textField:'GOODSCODE',panelHeight:'300px',editable:'true',limitToList:true,multiple:true" style="width: 150px; height: 32px;">
                         物料编码:
@@ -56,15 +55,18 @@
             <thead>
                 <tr>
                     <th data-options="field:'SID',title:'SID',width:220,align:'left',checkbox:true,hidden:true">SID</th>
+                    <th data-options="field:'MOLD_CODE',title:'计划单号',align:'center',sortable:false"></th>
                     <th data-options="field:'MOLD_BEGINDATE',title:'开始日期',align:'center',sortable:false"></th>
                     <th data-options="field:'MOLD_ENDDATE',title:'结束日期',align:'center',sortable:false,"></th>
+                    <th data-options="field:'WORKSHOP',title:'车间',align:'center',sortable:false,"></th>
                     <th data-options="field:'GROUTINGLINECODE',title:'成型线',align:'center',sortable:false"></th>
                     <th data-options="field:'GROUTINGMOULDCODE',title:'模具编号',align:'center',sortable:false,"></th>
-                    <th data-options="field:'WORKSHOP',title:'车间',align:'center',sortable:false,"></th>
                     <th data-options="field:'GOODSCODE',title:'产品型号',align:'center',sortable:false,"></th>
                     <th data-options="field:'SAP_SKU',title:'物料编码',align:'center',sortable:false,"></th>
                     <th data-options="field:'STD_COUNT',title:'标准次数',align:'center',sortable:false,"></th>
                     <th data-options="field:'DAY_GROUTING_NUM',title:'日注浆次数',align:'center',sortable:false,"></th>
+                    <th data-options="field:'USERNAME',title:'创建者',align:'center',sortable:false,"></th>
+                    <th data-options="field:'CREATETIME',title:'创建时间',align:'center',sortable:false,"></th>
                     <th data-options="field:'REMARKS',title:'备注',align:'center',sortable:false,"></th>
                 </tr>
             </thead>

+ 68 - 2
wwwroot/mes/pc/glineplanstop/glineplanstop.ashx

@@ -180,6 +180,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
             DateTime stop_begindate = Convert.ToDateTime(form["STOP_BEGINDATE"]);
             DateTime STOP_ENDDATE = Convert.ToDateTime(form["STOP_ENDDATE"]);
             string STOP_REASON = form["STOP_REASON"];
+            string STOP_REASON_ID = form["STOP_REASON_ID"];
             string REMARKS = form["REMARKS"];
 
             //停工计划总单
@@ -187,6 +188,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
                                SET stop_begindate = @stop_begindate@
                                   ,stop_enddate   = @stop_enddate@
                                   ,stop_reason    = @stop_reason@
+                                  ,STOP_REASON_ID = @STOP_REASON_ID@
                                   ,groutinglineid = @groutinglineid@
                                   ,remarks        = @remarks@
                                   ,updatetime     = SYSDATE
@@ -198,6 +200,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
             sqlPara.Add(new CDAParameter("stop_begindate", stop_begindate, DataType.DateTime));
             sqlPara.Add(new CDAParameter("stop_enddate", STOP_ENDDATE, DataType.DateTime));
             sqlPara.Add(new CDAParameter("stop_reason", STOP_REASON));
+            sqlPara.Add(new CDAParameter("STOP_REASON_ID", STOP_REASON_ID));
             sqlPara.Add(new CDAParameter("remarks", REMARKS));
             sqlPara.Add(new CDAParameter("updateuserid", HttpContext.Current.Session["userId"]));
             try
@@ -318,6 +321,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
                                       ,stop_begindate
                                       ,stop_enddate
                                       ,stop_reason
+                                      ,STOP_REASON_ID
                                       ,groutinglineid as Lineid
                                       ,remarks
                                   FROM t_gline_plan_stop gs
@@ -358,6 +362,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
             DateTime stop_begindate = Convert.ToDateTime(form["STOP_BEGINDATE"]);
             DateTime STOP_ENDDATE = Convert.ToDateTime(form["STOP_ENDDATE"]);
             string STOP_REASON = form["STOP_REASON"];
+            string STOP_REASON_ID = form["STOP_REASON_ID"];
             string REMARKS = form["REMARKS"];
 
             //停工计划总单
@@ -367,6 +372,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
                                 ,stop_enddate
                                 ,stop_reason
                                 ,groutinglineid
+                                ,STOP_REASON_ID
                                 ,remarks
                                 ,accountid
                                 ,createuserid
@@ -377,6 +383,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
                                 ,@stop_enddate@
                                 ,@stop_reason@
                                 ,@groutinglineid@
+                                ,@STOP_REASON_ID@
                                 ,@remarks@
                                 ,@accountid@
                                 ,@createuserid@
@@ -385,6 +392,7 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
             sqlPara.Add(new CDAParameter("stopID", stopID));
             sqlPara.Add(new CDAParameter("accountid", HttpContext.Current.Session["accountId"]));
             sqlPara.Add(new CDAParameter("groutinglineid", GROUTINGLINEID));
+            sqlPara.Add(new CDAParameter("STOP_REASON_ID", STOP_REASON_ID));
             sqlPara.Add(new CDAParameter("stop_begindate", stop_begindate, DataType.DateTime));
             sqlPara.Add(new CDAParameter("stop_enddate", STOP_ENDDATE, DataType.DateTime));
             sqlPara.Add(new CDAParameter("stop_reason", STOP_REASON));
@@ -574,29 +582,87 @@ public class glineplanstop : IHttpHandler, IReadOnlySessionState
             {
                 Lineid = form["Lineid"];
             }
+            string STOP_CODE = form["STOP_CODE"];//计划单号
+            string workshop = form["workshopMaster[]"];//车间
+            if (string.IsNullOrEmpty(workshop))
+            {
+                workshop = form["workshopMaster"];
+            }
+            string STOP_REASON_ID = form["STOP_REASON_ID[]"];//停工原因
+            if (string.IsNullOrEmpty(STOP_REASON_ID))
+            {
+                STOP_REASON_ID = form["STOP_REASON_ID"];
+            }
+            string CREATEUSER = form["CREATEUSER"];//创建者
+            string datebeginMasterS = form["datebeginMasterS"];//停工开始日期起始时间
+            string datebeginMasterD = form["datebeginMasterD"];//停工开始日期截止时间
+            string dateendMasterS = form["dateendMasterS"];//停工结束日期起始时间
+            string dateendMasterD = form["dateendMasterD"];//停工结束日期截止时间
             string sqlStr = @"select 
                              gs.stopid as sid
+                             ,gs.STOP_CODE
                              ,to_char(gs.stop_begindate,'YYYY-MM-DD') stop_begindate
                              ,to_char(gs.stop_enddate,'YYYY-MM-DD') stop_enddate
                              ,gs.stop_reason
                              ,gs.Remarks
                              ,gs.createtime
                              ,gl.groutinglinename
+                             ,case when gs.groutinglineid is not null then gl.workshop || '车间' else null end as workshop
                              ,mu.username as CREATEUSER
+                             ,md.dictionaryvalue
                              from t_gline_plan_stop gs
                              left join TP_PC_GroutingLine gl
                              on gs.groutinglineid = gl.groutinglineid
                              left join tp_mst_user mu
                              on gs.createuserid = mu.userid
+                             left join tp_mst_datadictionary md
+                             on gs.stop_reason_id = md.dictionaryid
                              where gs.ACCOUNTID =@ACCOUNTID@";
+            List<CDAParameter> sqlPara = new List<CDAParameter>();
+            sqlPara.Add(new CDAParameter("ACCOUNTID", HttpContext.Current.Session["accountId"]));
             if (!string.IsNullOrEmpty(Lineid))
             {
                 sqlStr += " and gs.groutinglineid in(" + Lineid + ") ";
 
             }
+            if (!string.IsNullOrEmpty(STOP_CODE))
+            {
+                sqlStr += " and gs.STOP_CODE like '%" + STOP_CODE + "%'";
+            }
+            if (!string.IsNullOrEmpty(workshop))
+            {
+                sqlStr += " and gl.workshop in (" + workshop + ")";
+            }
+            if (!string.IsNullOrEmpty(STOP_REASON_ID))
+            {
+                sqlStr += " and gs.STOP_REASON_ID in (" + STOP_REASON_ID + ") ";
+            }
+            if (!string.IsNullOrEmpty(CREATEUSER))
+            {
+                sqlStr += " and mu.username like '%" + CREATEUSER + "%'";
+            }
+            if (!string.IsNullOrEmpty(datebeginMasterS))
+            {
+                sqlStr += " and gs.stop_begindate >= @datebeginMasterS@";
+                sqlPara.Add(new CDAParameter("datebeginMasterS", Convert.ToDateTime(datebeginMasterS)));
+            }
+            if (!string.IsNullOrEmpty(datebeginMasterD))
+            {
+                sqlStr += " and gs.stop_begindate < @datebeginMasterD@";
+                sqlPara.Add(new CDAParameter("datebeginMasterD", Convert.ToDateTime(datebeginMasterD).AddDays(1)));
+            }
+            if (!string.IsNullOrEmpty(dateendMasterS))
+            {
+                sqlStr += " and gs.stop_enddate >= @dateendMasterS@";
+                sqlPara.Add(new CDAParameter("dateendMasterS", Convert.ToDateTime(dateendMasterS)));
+            }
+            if (!string.IsNullOrEmpty(dateendMasterD))
+            {
+                sqlStr += " and gs.stop_enddate < @dateendMasterD@";
+                sqlPara.Add(new CDAParameter("dateendMasterD", Convert.ToDateTime(dateendMasterD).AddDays(1)));
+            }
             sqlStr += " order by gs.createtime desc";
-            List<CDAParameter> sqlPara = new List<CDAParameter>();
-            sqlPara.Add(new CDAParameter("ACCOUNTID", HttpContext.Current.Session["accountId"]));
+
 
 
             int total = 0;

+ 6 - 2
wwwroot/mes/pc/glineplanstop/glineplanstop_add.html

@@ -38,11 +38,15 @@
                 </div>
                 <div class="w-div">
                     <div class="w-fieldname">停工结束日期:</div>
-                    <div class="w-field"><input class="easyui-datebox" id="STOP_ENDDATE" name="stop_enddate" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;"></div>
+                    <div class="w-field">
+                    <input class="easyui-datebox" id="STOP_ENDDATE" name="stop_enddate" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;"></div>
                 </div>
                 <div class="w-div">
                     <div class="w-fieldname">停工原因:</div>
-                    <div class="w-field"><input class="easyui-textbox" id="STOP_REASON" name="STOP_REASON" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;"></div>
+                    <div class="w-field">
+                        <input class="easyui-combobox" id="STOP_REASON_ID" name="STOP_REASON_ID" data-options="required:false,prompt:'',tipPosition:'top',url:'../../list.ashx?m=getStopReason',method:'get',valueField:'DICTIONARYID',textField:'DICTIONARYVALUE',panelHeight:'300px',editable:'true',limitToList:true" style="width:100%;height:32px;">
+                        <!--<input class="easyui-textbox" id="STOP_REASON" name="STOP_REASON" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;">-->
+                    </div>
                 </div>
                 <div class="w-div">
                     <div class="w-fieldname">成型线:</div>

+ 4 - 1
wwwroot/mes/pc/glineplanstop/glineplanstop_edit.html

@@ -42,7 +42,10 @@
                 </div>
                 <div class="w-div">
                     <div class="w-fieldname">停工原因:</div>
-                    <div class="w-field"><input class="easyui-textbox" id="STOP_REASON" name="STOP_REASON" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;"></div>
+                    <div class="w-field">
+                        <input class="easyui-combobox" id="STOP_REASON_ID" name="STOP_REASON_ID" data-options="required:false,prompt:'',tipPosition:'top',url:'../../list.ashx?m=getStopReason',method:'get',valueField:'DICTIONARYID',textField:'DICTIONARYVALUE',panelHeight:'300px',editable:'true',limitToList:true" style="width:100%;height:32px;">
+                        <!--<input class="easyui-textbox" id="STOP_REASON" name="STOP_REASON" data-options="required:true,prompt:'请填写...',tipPosition:'top'" style="width:100%;height:32px;">-->
+                    </div>
                 </div>
                 <div class="w-div">
                     <div class="w-fieldname">成型线:</div>

+ 27 - 5
wwwroot/mes/pc/glineplanstop/glineplanstop_index.html

@@ -24,8 +24,29 @@
             <div id="tbSearchDivMaster" padding:10px;">
                 <form id="ffMaster">
                     <div>
+                        计划单号:
+                        <input class="easyui-textbox" id="STOP_CODE" name="STOP_CODE" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
+                        车间:
+                        <input class="easyui-combobox" id="workshopMaster" name="workshopMaster" data-options="required:false,valueField:'value',textField:'text',editable:true,multiple:true,
+                               data:[{'text': '1车间', 'value': '1'},{'text': '2车间', 'value': '2'},{'text': '3车间', 'value': '3'}]"
+                               style=" width: 120px; height: 32px;">
                         成型线:
                         <input class="easyui-combobox" id="Lineid" name="Lineid" data-options="required:false,prompt:'',tipPosition:'top',url:'../../list.ashx?m=getLine&select=1',method:'get',valueField:'GROUTINGLINEID',textField:'GROUTINGLINENAME',panelHeight:'300px',editable:'true',multiple:true,limitToList:true" style="width:120px;height:32px;">
+                        停工原因:
+                        <input class="easyui-combobox" id="STOP_REASON_ID" name="STOP_REASON_ID" data-options="required:false,prompt:'',tipPosition:'top',url:'../../list.ashx?m=getStopReason',method:'get',valueField:'DICTIONARYID',textField:'DICTIONARYVALUE',panelHeight:'300px',editable:'true',multiple:true,limitToList:true" style="width:120px;height:32px;">
+                        创建者:
+                        <input class="easyui-textbox" id="CREATEUSER" name="CREATEUSER" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 120px; height: 32px;">
+
+                    </div>
+                    <div style="padding-top:10px;">
+                        停工开始日期:
+                        <input class="easyui-datebox" id="datebeginMasterS" name="datebeginMasterS" data-options="required:false,prompt:'',tipPosition:'top'" style="width:150px; height:32px;">
+                        -
+                        <input class="easyui-datebox" id="datebeginMasterD" name="datebeginMasterD" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 150px; height: 32px;">
+                        停工结束日期:
+                        <input class="easyui-datebox" id="dateendMasterS" name="dateendMasterS" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 150px; height: 32px;">
+                        -
+                        <input class="easyui-datebox" id="dateendMasterD" name="dateendMasterD" data-options="required:false,prompt:'',tipPosition:'top'" style="width: 150px; height: 32px;">
                         <a href="javascript:void(0)" id="btnSearchSubmit" title="清空" class="easyui-linkbutton" plain="false" onclick="$('#ffMaster').form('clear')">清空</a>
                         <a href="javascript:void(0)" id="btnSearchSubmit" title="搜索" class="easyui-linkbutton" plain="false" onclick="tbMasterSearchSubmit()">搜索</a>
                     </div>
@@ -38,11 +59,14 @@
             <thead>
                 <tr>
                     <th data-options="field:'SID',title:'SID',width:220,align:'left',checkbox:true,hidden:true"></th>
+                    <th data-options="field:'STOP_CODE',title:'计划单号',align:'center',sortable:false"></th>
                     <th data-options="field:'STOP_BEGINDATE',title:'停工开始日期',align:'center',sortable:false"></th>
                     <th data-options="field:'STOP_ENDDATE',title:'停工结束日期',align:'center',sortable:false"></th>
+                    <th data-options="field:'WORKSHOP',title:'车间',align:'center',sortable:false"></th>
                     <th data-options="field:'GROUTINGLINENAME',title:'成型线',align:'center',sortable:false"></th>
-                    <th data-options="field:'STOP_REASON',title:'停工原因',align:'center',sortable:false"></th>
+                    <th data-options="field:'DICTIONARYVALUE',title:'停工原因',align:'center',sortable:false"></th>
                     <th data-options="field:'CREATEUSER',title:'创建者',align:'center',sortable:false"></th>
+                    <th data-options="field:'CREATETIME',title:'创建时间',align:'center',sortable:false"></th>
                     <th data-options="field:'REMARKS',title:'备注',align:'center',sortable:false"></th>
                 </tr>
             </thead>
@@ -51,7 +75,7 @@
     </div>
 
     <!--中部右侧-->
-    <div data-options="border:false,region:'east',split:true,title:'',iconCls:'icon-grid'" title="East" style="width:750px;">
+    <div data-options="border:false,region:'east',split:true,title:'',iconCls:'icon-grid'" title="East" style="width:650px;">
         <!--工具条-->
         <div id="tbDetail" class="i-toolbar">
             <a href="javascript:void(0)" style="display:none" id="btnInsertDetail" title="添加" class="easyui-linkbutton" iconcls="icon-add" plain="true" onclick="tbDetailAdd()">添加</a>
@@ -100,8 +124,6 @@
             });
             //加载表格数据
             tbMasterSearchSubmit();
-            //加载明细数据
-            // getDataGridDetail();
         });
 
         //添加按钮
@@ -187,7 +209,7 @@
                 });
             }
             else {
-               // $('#dgDetail').datagrid('loadData', { total: 0, rows: [] });
+                // $('#dgDetail').datagrid('loadData', { total: 0, rows: [] });
                 var item = $('#dgDetail').datagrid('getRows');
                 for (var i = item.length - 1; i >= 0; i--) {
                     var index = $('#dgDetail').datagrid('getRowIndex', item[i]);

+ 1 - 0
wwwroot/mes/pc/mouldDailyPlan/mouldDailyPlan.ashx

@@ -78,6 +78,7 @@ public class mouldDailyPlan : IHttpHandler, IReadOnlySessionState
                                           ,mdd.plan_qty
                                           ,mdd.make_qty
                                           ,mdd.remarks
+                                          ,mdd.SKU_CODE
                                           ,to_char(round(mdd.make_qty / mdd.plan_qty, 4) * 100, 'fm9999999990.00') || '%' AS hasmake
                                       FROM tp_mould_dailyplandetail mdd
                                       LEFT JOIN tp_mst_goods mg

+ 1 - 2
wwwroot/mes/pc/mouldDailyPlan/mouldDailyPlan_index.html

@@ -64,11 +64,10 @@
                             <th data-options="field:'WORKSHOP',title:'车间',align:'center',sortable:false"></th>
                             <th data-options="field:'GROUTINGLINECODE',title:'成型线',align:'center',sortable:false"></th>
                             <th data-options="field:'GOODSNAME',title:'产品型号',align:'center',sortable:false"></th>
+                            <th data-options="field:'SKU_CODE',title:'物料编码',align:'center',sortable:false"></th>
                             <th data-options="field:'PLAN_QTY',title:'计划数量',align:'center',sortable:false"></th>
                             <th data-options="field:'MAKE_QTY',title:'生产数量',align:'center',sortable:false"></th>
                             <th data-options="field:'HASMAKE',title:'完成率',align:'center',sortable:false"></th>
-                            <!--<th data-options="field:'USERNAME',title:'创建人',align:'center',sortable:false"></th>
-    <th data-options="field:'CREATETIME',title:'创建时间',align:'center',sortable:false"></th>-->
                             <th data-options="field:'REMARKS',title:'备注',align:'center',sortable:false"></th>
                         </tr>
                     </thead>