forked from HANYANG/HANYANG_MES
feat: (현장팝업) 작업자 테이블 합계 행 추가
This commit is contained in:
parent
9afc5f8bf8
commit
401a325a5d
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
<div style="height:calc(100% - 80px);">
|
||||
<div class="hy-table" id="isWorker"></div>
|
||||
<div class="hy-table groupby" id="isWorker"></div>
|
||||
</div>
|
||||
<!-- <div class="table-title">
|
||||
<div class="button-box flexend">
|
||||
|
|
|
|||
|
|
@ -133,9 +133,18 @@ class FieldPop {
|
|||
{ field: "", formatter:"rownum", title: "순번", width: 50},
|
||||
{ field: "", title: "실적 등록 시간", minWidth: 150, width:'26%'},
|
||||
{ field: "", title: "오더 번호", minWidth: 150, width:'25%'},
|
||||
{ field: "", title: "실적 수량", minWidth: 100, width:'20%'},
|
||||
{ field: "", title: "달성 금액", minWidth: 100, width:'20%'}
|
||||
{ field: "", title: "실적 수량", minWidth: 100, width:'20%',
|
||||
bottomCalc: "sum",
|
||||
bottomCalcFormatter:"money",
|
||||
bottomCalcFormatterParams:{ decimal:".", precision:0 }
|
||||
},
|
||||
{ field: "", title: "달성 금액", minWidth: 100, width:'20%',
|
||||
bottomCalc: "sum",
|
||||
bottomCalcFormatter:"money",
|
||||
bottomCalcFormatterParams:{ decimal:".", precision:0 }
|
||||
}
|
||||
],
|
||||
|
||||
isFacility : [
|
||||
{ field: "", formatter:"rownum", title: "순번", width: 50},
|
||||
{ field: "", title: "설비코드", minWidth: 80, width:'14%'},
|
||||
|
|
|
|||
Loading…
Reference in New Issue