diff --git a/src/views/emis/emisCreditCustomer/index.vue b/src/views/emis/emisCreditCustomer/index.vue
index 91c2ed24..ba380209 100644
--- a/src/views/emis/emisCreditCustomer/index.vue
+++ b/src/views/emis/emisCreditCustomer/index.vue
@@ -119,7 +119,7 @@
-
+
{{ scope.row.creditMoney - scope.row.useMoney }}
@@ -280,7 +280,7 @@ export default {
let item0=row;
this.$router.push(
{
- path: '/d24/waybillManagement/SendWaybillList',
+ path: '/d24/customerManagement/CreditSendWaybillList',
query: {
action: "queryByCredit",
custNo: item0.monthlyPayCode,
diff --git a/src/views/emis/emisCreditSalesmen/index.vue b/src/views/emis/emisCreditSalesmen/index.vue
index 68103dae..b88625e8 100644
--- a/src/views/emis/emisCreditSalesmen/index.vue
+++ b/src/views/emis/emisCreditSalesmen/index.vue
@@ -108,7 +108,7 @@
-
+
{{ scope.row.creditMoney - scope.row.useMoney }}
@@ -256,7 +256,7 @@ export default {
let item0=row;
this.$router.push(
{
- path: '/d24/waybillManagement/SendWaybillList',
+ path: '/d24/customerManagement/CreditSendWaybillList',
query: {
action: "queryByCredit",
salesmen: item0.salesmen,
diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue
index 6b14b7b8..380524d4 100644
--- a/src/views/emis/emisWaybill/sendWaybillList.vue
+++ b/src/views/emis/emisWaybill/sendWaybillList.vue
@@ -820,6 +820,7 @@ export default {
queryTabType:"1",
querySendType:"1",
blUploadGoodsPic:null,
+ settleType:null,
}
},
};
@@ -829,16 +830,21 @@ export default {
if(this.$route.query.action=='queryByCredit'){
if(this.$route.query.custNo!=null){
this.queryParams.custNo=this.$route.query.custNo;
+ this.queryParams.paymentType='2,4,5';
}
if(this.$route.query.salesmen!=null){
this.queryParams.salesmen=this.$route.query.salesmen;
+ this.queryParams.paymentType='1,3';
}
- this.queryParams.paymentStatus='0';
+ this.queryParams.transType=this.$route.query.transType;
+
+ this.queryParams.paymentStatus='0,2';
this.queryParams.params.problemQueryType=2;
this.queryParams.params.problemQueryIds="173,170,151";
+
let startTime=this.$route.query.startDate;
let endTime=this.$route.query.endDate;
this.dateRange=[timeFormat(startTime), timeFormat(endTime)]
@@ -852,15 +858,20 @@ export default {
},
created() {
if(this.$route.query.action=='queryByCredit'){
+
if(this.$route.query.custNo!=null){
this.queryParams.custNo=this.$route.query.custNo;
+ this.queryParams.paymentType='2,4,5';
}
if(this.$route.query.salesmen!=null){
this.queryParams.salesmen=this.$route.query.salesmen;
+ this.queryParams.paymentType='1,3';
}
- this.queryParams.paymentStatus='0';
+ this.queryParams.transType=this.$route.query.transType;
+
+ this.queryParams.paymentStatus='0,2';
this.queryParams.params.problemQueryType=2;
this.queryParams.params.problemQueryIds="173,170,151";
diff --git a/src/views/emis/emisWaybill/waybillIsPrinted.vue b/src/views/emis/emisWaybill/waybillIsPrinted.vue
index 1729ced2..7a6085f3 100644
--- a/src/views/emis/emisWaybill/waybillIsPrinted.vue
+++ b/src/views/emis/emisWaybill/waybillIsPrinted.vue
@@ -138,6 +138,28 @@
@click="handleDownPDF"
>下载pdf
+
+
+ 下载客户账单(PDF)
+
+
+
+ 下载税金账单(PDF)
+
@@ -525,6 +547,27 @@ export default {
rowKey (row) {
return row.id;
},
+ handleDownCustBillPDF() {
+ if(this.currentSelection&&this.currentSelection.length>0){
+ this.currentSelection.forEach(item=>{
+ this.download('emis/emisWaybill/exportCustBillTpl', {
+ billCode:item.billCode,
+ fileType:'pdf'
+ }, `${item.billCode}-custbill.pdf`)
+
+ });
+ }
+ },
+ handleDownCustTaxBillPDF() {
+ if(this.currentSelection&&this.currentSelection.length>0){
+ this.currentSelection.forEach(item=>{
+ this.download('emis/emisWaybill/exportCustTaxBillTpl', {
+ billCode:item.billCode,
+ fileType:'pdf'
+ }, `${item.billCode}-custTaxBill.pdf`)
+ });
+ }
+ },
handleBatchPrint(printCnt){
this.$confirm("确定打印?", "提示", {
cancelButtonText: "不打印",