1
0
Fork 0

feat: (현장팝업) 작업자 테이블 합계 행 추가

This commit is contained in:
sychoi 2024-04-30 10:44:18 +09:00
parent 9afc5f8bf8
commit 401a325a5d
2 changed files with 12 additions and 3 deletions

View File

@ -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">

View File

@ -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%'},