|
|
@@ -348,7 +348,8 @@ const formKP = reactive({
|
|
|
openBank: '',
|
|
|
bankAccount: '',
|
|
|
remark: '',
|
|
|
- BigDecimal: 0
|
|
|
+ BigDecimal: 0,
|
|
|
+ summaryId:undefined
|
|
|
});
|
|
|
const rulesKP = {
|
|
|
invoiceName: [
|
|
|
@@ -504,7 +505,8 @@ function handleKaipiao(row){
|
|
|
openBank: response.data.openBank || '',
|
|
|
bankAccount: response.data.bankAccount || '',
|
|
|
remark: response.data.remark || '',
|
|
|
- BigDecimal: row.payableAmount || 0
|
|
|
+ BigDecimal: row.payableAmount || 0,
|
|
|
+ summaryId: row.summaryId || 0
|
|
|
});
|
|
|
openKaipiao.value = true;
|
|
|
});
|
|
|
@@ -523,6 +525,7 @@ function submitFormKP(){
|
|
|
gmfMobile:`${formKP.phone}`,
|
|
|
gmfEmail:`${formKP.email}`,
|
|
|
bz:`${formKP.remark}`,
|
|
|
+ summaryId:formKP.summaryId
|
|
|
}
|
|
|
invoiceIssuance(obj).then(response => {
|
|
|
proxy.$modal.msgSuccess("开票申请成功");
|