|
|
@@ -1324,7 +1324,7 @@ export default {
|
|
|
this.form = {
|
|
|
billDate: dateFormat(new Date(), "yyyy-MM-dd") + " 00:00", // 销账日期 默认 当天
|
|
|
isApproved: "0",
|
|
|
- isSignfor: "0",
|
|
|
+ isSignfor: "2",
|
|
|
isCleared: null, // 销账
|
|
|
isChecked: "0",
|
|
|
isInvoice: "0",
|
|
|
@@ -1340,7 +1340,7 @@ export default {
|
|
|
this.$set(this.form, "corpEnName", row.enName);
|
|
|
this.$set(this.form, "corpArgreementNo", row.enName);
|
|
|
this.retrievePopupsType = false;
|
|
|
- this.finstlbillslistAccBillV1fun('检索');
|
|
|
+ this.finstlbillslistAccBillV1fun("检索");
|
|
|
},
|
|
|
// 检索
|
|
|
retrievalfun() {
|
|
|
@@ -1354,7 +1354,7 @@ export default {
|
|
|
return this.$message.warning("请填写销账单位");
|
|
|
}
|
|
|
console.log("原来的接口");
|
|
|
- this.finstlbillslistAccBillV1fun('检索');
|
|
|
+ this.finstlbillslistAccBillV1fun("检索");
|
|
|
}
|
|
|
},
|
|
|
// 检索出的弹窗
|
|
|
@@ -1393,6 +1393,7 @@ export default {
|
|
|
obj.approveTimeStart = this.form.auditDateFrom; // 审核开始日期
|
|
|
obj.approveTimeEnd = this.form.auditDateTo; // 审核结束日期
|
|
|
obj.feeCnName = this.form.feeCnName;
|
|
|
+ obj.isSignfor = this.form.isSignfor; // 是否已签收(0 否 1是)
|
|
|
finstlbillslistAccBillByCorp(obj).then(res => {
|
|
|
this.retrievePopupsType = true;
|
|
|
this.retrievePopupsData = res.data.data;
|
|
|
@@ -1434,6 +1435,7 @@ export default {
|
|
|
obj.approveTimeStart = this.form.auditDateFrom; // 审核开始日期
|
|
|
obj.approveTimeEnd = this.form.auditDateTo; // 审核结束日期
|
|
|
obj.feeCnName = this.form.feeCnName;
|
|
|
+ obj.isSignfor = this.form.isSignfor; // 是否已签收(0 否 1是)
|
|
|
finstlbillslistAccBillV1(obj).then(res => {
|
|
|
res.data.data.forEach((item, index) => {
|
|
|
item.accBillId = item.id;
|
|
|
@@ -1467,7 +1469,7 @@ export default {
|
|
|
this.queryData.push(item);
|
|
|
}
|
|
|
}
|
|
|
- if (this.queryData.length == 0&&type=='检索') {
|
|
|
+ if (this.queryData.length == 0 && type == "检索") {
|
|
|
this.$message.warning("当前检索暂无数据!");
|
|
|
}
|
|
|
});
|