fix : 계약관리, 결재함 메뉴 등록기간 시작일 기본값 주석처리

fix : 계약관리 대금청구 버튼 색 변경
fix : 컬럼명 변경 (비고 -> 근태)
This commit is contained in:
Kasi
2025-06-05 10:47:26 +09:00
parent 0a9355c766
commit e61f42350c
3 changed files with 16 additions and 8 deletions

View File

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

View File

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

View File

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