Browse Source

完善付款申请

master
yunuo970428 2 weeks ago
parent
commit
9905361203
  1. 15
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/paymentAdd.vue
  2. 15
      anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/fukuanEdit.vue

15
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/paymentAdd.vue

@ -481,11 +481,6 @@ export default {
this.costType_list = res.data
}
})
getTypeValueList({ type: 'payCostType', groupNum: '001' }).then((res) => {
if (res.success) {
this.costTitle_list = res.data
}
})
getInvoicingList({ orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((res) => {
if (res.success) {
this.payCompany_list = res.data
@ -580,6 +575,16 @@ export default {
this.formobj.costTypeKey = ''
this.formobj.isVeh = ''
}
if (this.formobj.costTypeKey !== '' && this.formobj.costTypeKey !== '004') {
getTypeValueList({ type: 'payCostType', groupNum: this.formobj.costTypeKey }).then((res) => {
if (res.success) {
this.costTitle_list = res.data
}
})
} else {
this.costTitle_list = []
}
this.formobj.detailsList = []
},
isVehChange(val) {
if (val === '1') {

15
anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/fukuanEdit.vue

@ -497,11 +497,6 @@ export default {
this.costType_list = res.data
}
})
getTypeValueList({ type: 'payCostType', groupNum: '001' }).then((res) => {
if (res.success) {
this.costTitle_list = res.data
}
})
typeValues({ type: 'paymentType' }).then((res) => {
if (res.success) {
this.payment_list = res.data
@ -571,6 +566,16 @@ export default {
this.formobj.costTypeKey = ''
this.formobj.isVeh = ''
}
if (this.formobj.costTypeKey !== '' && this.formobj.costTypeKey !== '004') {
getTypeValueList({ type: 'payCostType', groupNum: this.formobj.costTypeKey }).then((res) => {
if (res.success) {
this.costTitle_list = res.data
}
})
} else {
this.costTitle_list = []
}
this.formobj.detailsList = []
},
isVehChange(val) {
if (val === '1') {

Loading…
Cancel
Save