mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:13:35 +09:00
fix : 계약관리, 결재함 메뉴 등록기간 시작일 기본값 주석처리
fix : 계약관리 대금청구 버튼 색 변경 fix : 컬럼명 변경 (비고 -> 근태)
This commit is contained in:
@@ -69,8 +69,8 @@ function formatRegDt(value) {
|
||||
}
|
||||
|
||||
async function getIntegratedApprovalList() {
|
||||
const today = new Date()
|
||||
searchParamsList.regSdt = new Date().setDate(today.getDate() - 30)
|
||||
// const today = new Date()
|
||||
// searchParamsList.regSdt = new Date().setDate(today.getDate() - 30)
|
||||
|
||||
const approvalParams = {
|
||||
title: params.title,
|
||||
|
||||
@@ -24,8 +24,8 @@ onBeforeMount(async () => {
|
||||
})
|
||||
|
||||
async function getContractListView() {
|
||||
const today = new Date()
|
||||
params.signSdt = new Date().setDate(today.getDate() - 30)
|
||||
// const today = new Date()
|
||||
// params.signSdt = new Date().setDate(today.getDate() - 30)
|
||||
|
||||
const contractParams = {
|
||||
params:{
|
||||
@@ -124,6 +124,14 @@ function getBilling(row){
|
||||
} //detail로 수정하기 현재 : 대금지급전
|
||||
}
|
||||
|
||||
const isBizNoEditable = ref(false)
|
||||
|
||||
function openEditForm(arg) {
|
||||
// 수정폼 오픈 시
|
||||
isBizNoEditable.value = false
|
||||
// ...데이터 매핑 등
|
||||
}
|
||||
|
||||
watch(currentPage, (newParams) => {
|
||||
currentPage.value = newParams
|
||||
searchContract(currentPage.value)
|
||||
@@ -277,7 +285,7 @@ watch(currentPage, (newParams) => {
|
||||
<div>
|
||||
<VButton
|
||||
v-if="row.contStatCd==='0200'"
|
||||
color="danger"
|
||||
color="info"
|
||||
size="big"
|
||||
@click.stop="getBilling(row)"
|
||||
>
|
||||
@@ -285,7 +293,7 @@ watch(currentPage, (newParams) => {
|
||||
</VButton>
|
||||
<VButton
|
||||
v-else-if="['0300', '0400', '0500'].includes(row.contStatCd)"
|
||||
color="info"
|
||||
color="danger"
|
||||
size="big"
|
||||
@click.stop="getBilling(row)"
|
||||
>
|
||||
|
||||
@@ -54,7 +54,7 @@ const params = reactive({
|
||||
{ key: 'deptNm', label: '부서' },
|
||||
{ key: 'sabun', label: '사번' },
|
||||
{ key: 'name', label: '이름' },
|
||||
{ key: 'attendNm', label: '비고' },
|
||||
{ key: 'attendNm', label: '근태' },
|
||||
{ key: 'apprStat', label: '결재상태'},
|
||||
{ key: 'apprDt', label: '승인일자'},
|
||||
],
|
||||
@@ -425,7 +425,7 @@ function minAmtCalc (est) {
|
||||
<td>최소견적서</td>
|
||||
<td colspan="7">
|
||||
<div class="columns">
|
||||
<div class="column is-2">사업자명 : {{params.minAmtComp.join(',')}}</div>
|
||||
<div class="column is-4">사업자명 : {{params.minAmtComp.join(', ')}}</div>
|
||||
<div class="column is-2">견적 금액 : {{formatCurrency(params.minAmt)}}원</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user