|
@@ -3401,7 +3401,7 @@ export default {
|
|
|
if (name == null || name === "") {
|
|
|
return false;
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, pageSize: 10, fName: name };
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 20, fName: name };
|
|
|
listFees(queryParams).then((response) => {
|
|
|
this.fWbuOptions = response.rows;
|
|
|
});
|
|
@@ -3567,6 +3567,17 @@ export default {
|
|
|
if (!this.queryParams.fId) {
|
|
|
// this.chargeList.fBillstatus = '1'
|
|
|
this.queryParams.fBillstatus = "1";
|
|
|
+ let noList=[]
|
|
|
+ if(this.increase_s){
|
|
|
+ this.increase_s.forEach(e=>{
|
|
|
+ e.fInvoiceNo=e.invoiceNo
|
|
|
+ noList.push(e.invoiceNo)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if(!this.queryParams.invoiceNo){
|
|
|
+ const newArr =[...new Set(noList)]
|
|
|
+ this.queryParams.invoiceNo=newArr.join(",")
|
|
|
+ }
|
|
|
let formData = new window.FormData();
|
|
|
formData.append("tFee", JSON.stringify(this.queryParams));
|
|
|
formData.append("tFeeDo", JSON.stringify(this.increase_s));
|
|
@@ -3631,6 +3642,17 @@ export default {
|
|
|
}
|
|
|
} else if(Cookies.get("sysType") == 1 || Cookies.get("sysType") == 2){
|
|
|
this.queryParams.fBillstatus = "1";
|
|
|
+ let noList=[]
|
|
|
+ if(this.increase_s){
|
|
|
+ this.increase_s.forEach(e=>{
|
|
|
+ e.fInvoiceNo=e.invoiceNo
|
|
|
+ noList.push(e.invoiceNo)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if(!this.queryParams.invoiceNo){
|
|
|
+ const newArr =[...new Set(noList)]
|
|
|
+ this.queryParams.invoiceNo=newArr.join(",")
|
|
|
+ }
|
|
|
let formData = new window.FormData();
|
|
|
formData.append("tFee", JSON.stringify(this.queryParams));
|
|
|
formData.append("tFeeDo", JSON.stringify(this.increase_s));
|