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