|
@@ -1070,7 +1070,7 @@
|
|
|
type="primary"
|
|
|
@click="feesCrConfirm"
|
|
|
v-if="isShowFeesConfirm == 0"
|
|
|
- >费用确认单</el-button>
|
|
|
+ >请款单</el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
size="small"
|
|
@@ -1952,6 +1952,7 @@
|
|
|
<div>业务编号:{{ form.fBillno }}</div>
|
|
|
<div>客户名称:{{ form.fCorpidName }}</div>
|
|
|
<div>提单号:{{ form.fBillno }}</div>
|
|
|
+ <div>结算单位: {{ form.chargeUnit }}</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
<div>制单日期:{{ form.createTime | fBsdateFormat }}</div>
|
|
@@ -2043,7 +2044,7 @@
|
|
|
margin-bottom: 5px;
|
|
|
"
|
|
|
>
|
|
|
- {{ company }}
|
|
|
+<!-- {{ company }}-->
|
|
|
</div>
|
|
|
<div
|
|
|
style="
|
|
@@ -2051,13 +2052,14 @@
|
|
|
justify-content: center;
|
|
|
margin-bottom: 5px;
|
|
|
">
|
|
|
- <div style="font-size: 24px;">费用确认</div>
|
|
|
+ <div style="font-size: 24px;letter-spacing: 3px;">请款单</div>
|
|
|
</div>
|
|
|
<div style="display: flex;justify-content: space-between;">
|
|
|
<div>
|
|
|
<div>业务编号:{{ form.fBillno }}</div>
|
|
|
<div>客户名称:{{ form.fCorpidName }}</div>
|
|
|
<div>提单号:{{ form.fBillno }}</div>
|
|
|
+ <div>结算单位: {{ form.chargeUnit }}</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
<div>制单日期:{{ form.createTime | fBsdateFormat }}</div>
|
|
@@ -2088,7 +2090,7 @@
|
|
|
<td>税率</td>
|
|
|
<td>不含税金额</td>
|
|
|
<td>税额</td>
|
|
|
- <td>应收金额</td>
|
|
|
+ <td>应付金额</td>
|
|
|
<td>备注</td>
|
|
|
</tr>
|
|
|
<tr v-for="(item, index) in PrintingCrlist" :key="index">
|
|
@@ -2113,13 +2115,6 @@
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|
|
|
- <div>人民币汇款路径:</div>
|
|
|
- <div>公司名称:{{ company }}</div>
|
|
|
- <div>纳税人识别号:{{ Identifier }}</div>
|
|
|
- <div>地址:{{ address }}</div>
|
|
|
- <div>电话:{{ phone }}</div>
|
|
|
- <div>开户行:{{ bank }}</div>
|
|
|
- <div>银行账户:{{ bankAccount }}</div>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button
|
|
@@ -4669,6 +4664,13 @@ export default {
|
|
|
this.fMblnoOptions[corp].fName
|
|
|
);
|
|
|
}
|
|
|
+ if (this.Collectionoptionss[0].fCorpid === this.fMblnoOptions[corp].fId) {
|
|
|
+ this.$set(
|
|
|
+ this.form,
|
|
|
+ "chargeUnit",
|
|
|
+ this.fMblnoOptions[corp].fName
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
this.print_fyqr = true;
|
|
|
} else {
|
|
@@ -4722,6 +4724,13 @@ export default {
|
|
|
this.fMblnoOptions[corp].fName
|
|
|
);
|
|
|
}
|
|
|
+ if (this.PrintingCrlist[0].fCorpid === this.fMblnoOptions[corp].fId) {
|
|
|
+ this.$set(
|
|
|
+ this.form,
|
|
|
+ "chargeUnit",
|
|
|
+ this.fMblnoOptions[corp].fName
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
this.print_Crfyqr = true;
|
|
|
} else {
|