forked from HANYANG/HANYANG_MES
first commit
This commit is contained in:
parent
f4ca1d4cea
commit
6c0ce8ec61
|
|
@ -721,6 +721,8 @@ const popRegOrder = function( columns, tabrow ){
|
|||
{ field: "ITEM_NM", title: "품명", width: 100, },
|
||||
{ field: "DRAW_NO", title: "도면번호", width: 100, },
|
||||
{ field: "PRV_OP_CD", title: "이전공정", width: 100, },
|
||||
{ field: "MAKE_TM", title: "등록시간", width: 100, },
|
||||
{ field: "FACLT_CD", title: "설비", width: 100, },
|
||||
{ field: "ORD_QTY", title: "지시수량", width: 150, formatter: "money", formatterParams: { decimal: ",", precision: 0 } },
|
||||
{ field: "OP_WRK_QTY", title: "이전공정양품", width: 100, formatter: "money", formatterParams: { decimal: ",", precision: 0 } }
|
||||
];
|
||||
|
|
@ -752,8 +754,9 @@ const popRegOrder = function( columns, tabrow ){
|
|||
const popRegFacility = function( columns, tabrow ){
|
||||
const fields = [
|
||||
{ formatter:"rownum", title: "No", width: 50, headerSort: false, hozAlign:'center', },
|
||||
{ field: "FACLT_CD", title: "설비코드", width: 150, },
|
||||
{ field: "FACLT_NM", title: "설비명", width: 150, },
|
||||
{ field: "FACLT_CD", title: "설비코드" , width: 150, },
|
||||
{ field: "FACLT_NM", title: "설비명" , width: 150, },
|
||||
{ field: "OP_CD" , title:"공정" ,width:100}
|
||||
];
|
||||
|
||||
const setTableFilter = function(modal){ //검색어 필터 적용
|
||||
|
|
|
|||
|
|
@ -262,7 +262,9 @@ class Tb_order_class {
|
|||
DRAW_NO: 'DRAW_NO',
|
||||
PRV_OP_CD: 'PRV_OP_CD',
|
||||
ORD_QTY: 'ORD_QTY',
|
||||
OP_WRK_QTY: 'OP_WRK_QTY'
|
||||
OP_WRK_QTY: 'OP_WRK_QTY',
|
||||
MAKE_TM: 'MAKE_TM',
|
||||
FACLT_CD: 'FACLT_CD'
|
||||
},tgt.getRow())
|
||||
break;
|
||||
case "FACLT_CD":
|
||||
|
|
@ -356,10 +358,10 @@ class Tb_order_class {
|
|||
{ field: "WO_NO", title: "생산오더", width: 100,cssClass: "editable-cell" },
|
||||
{ field: "WO_SEQ", width: 50, visible: false },
|
||||
{ field: "RSLT_NO", width: 50, visible: false },
|
||||
{ field: "ITEM_CD", width: 50, visible: false },
|
||||
{ field: "ITEM_CD", width: 100, title: "품목"},
|
||||
{ field: "DEF_NO", width: 50, visible: false },
|
||||
{ field: "EMP_NO", width: 50, visible: false},
|
||||
{ field: "ITEM_NM", visible: false },
|
||||
{ field: "ITEM_NM",title: "품목", width: 200,visible: false },
|
||||
{ field: "DRAW_NO", title: "도면번호", width: 200, hozAlign: "start" },
|
||||
{ field: "OP_CD", title: "공정", width: 50 },
|
||||
{ field: "OP_NM", title: "공정", width: 50, visible: false },
|
||||
|
|
@ -413,7 +415,7 @@ class Tb_order_class {
|
|||
},
|
||||
|
||||
{ field: "EMP_NM", title: "작업자", width: 100 ,cssClass: "editable-cell"},
|
||||
{ field: "", title: "실적등록시간", width: 120,cssClass: "editable-cell" },
|
||||
{ field: "MAKE_TM", title: "실적등록시간", width: 120 },
|
||||
{ field: "", title: "실적일자",width: 120,},
|
||||
|
||||
// {
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ include_once _SVC_INC_PATH_ . "/header.php";
|
|||
<div class="table-title">
|
||||
<p class="title">
|
||||
생산 실적
|
||||
<span> ※더블클릭하면 수정창이 열립니다.</span>
|
||||
<!-- <span> ※더블클릭하면 수정창이 열립니다.</span> -->
|
||||
</p>
|
||||
|
||||
<!-- 버튼 -->
|
||||
|
|
@ -126,10 +126,10 @@ include_once _SVC_INC_PATH_ . "/header.php";
|
|||
<?php include _SVC_INC_PATH_ . '/img/delete.php' ?>
|
||||
삭제
|
||||
</button>
|
||||
<button class="update-btn reverse-btn disabled-btn" disabled>
|
||||
<?php include _SVC_INC_PATH_ . '/img/update.php' ?>
|
||||
<!-- <button class="update-btn reverse-btn disabled-btn" disabled>
|
||||
|
||||
수정
|
||||
</button>
|
||||
</button> -->
|
||||
</div>
|
||||
<!-- 버튼 종료 // -->
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue