From ff91b5f8d06a618604f1b5ade594d292e946b701 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Sat, 25 Mar 2023 11:34:00 +0800
Subject: [PATCH] =?UTF-8?q?=E9=80=81=E8=B4=A7=E5=8F=91=E7=A5=A8=E7=99=BB?=
=?UTF-8?q?=E8=AE=B0=20=20=E6=B7=BB=E5=8A=A0=E5=8D=95=E6=8D=AE=E8=AF=A6?=
=?UTF-8?q?=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/inout/InvoiceRegistration.vue | 154 +++++++++++++++++++++++-
1 file changed, 148 insertions(+), 6 deletions(-)
diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue
index 2a48d072..55cf7fca 100644
--- a/src/views/inout/InvoiceRegistration.vue
+++ b/src/views/inout/InvoiceRegistration.vue
@@ -147,7 +147,7 @@
-
+
@@ -194,7 +194,6 @@
-
订单 {{ currentRow.billNo }}-发票信息
@@ -253,7 +252,7 @@
prop="remark"
show-overflow-tooltip
>
-
+
+
+
+
+ 单据 {{ currentRow.billNo }}-单据详情
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
import {
deleteByOrderId,
- getOrderList, rollUnReceivebackOrder, filterInvoice
-} from "../../api/inout/order";
+ getOrderList, rollUnReceivebackOrder, filterInvoice, filterOrder
+} from '../../api/inout/order'
import {getLocalJoinByUser} from "@/api/basic/busType";
import {getInvListByUser} from "@/api/system/invWarehouse";
import {isBlank} from "@/utils/strUtil";
@@ -354,6 +428,7 @@ import InvoiceRegister from "@/views/inout/InvoiceRegister";
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
import {getDeptListByUser} from "@/api/auth/authDept";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
+import { getCodeDetailList } from '@/api/inout/orderDetailCode'
const formJson = {
@@ -442,6 +517,7 @@ export default {
billNo: ""
},
actDateRange: [],
+ auditDateRange:[],
pickerOptions: {
shortcuts: [
{
@@ -535,6 +611,15 @@ export default {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
}
+
+ if (this.auditDateRange !== null) {
+ this.filterQuery.startAduditTime = this.auditDateRange[0];
+ this.filterQuery.endAduditTime = this.auditDateRange[1];
+ } else {
+ this.filterQuery.startAduditTime = null;
+ this.filterQuery.endAduditTime = null;
+ }
+
this.filterQuery.page = 1;
this.getList();
},
@@ -604,7 +689,12 @@ export default {
// 获取单据 业务详情、扫码详情、扫码明细
getOrderDetails() {
this.bizQuery.page = 1;
+ this.codeQuery.page = 1;
+ this.resultQuery.page = 1;
+
this.getBizDetailList();
+ this.getCodeDetailList();
+ this.getResultDetailList();
},
// 清空单据详情数据列表
clearDetailList() {
@@ -624,7 +714,7 @@ export default {
this.currentRow = {billNo: ""};
this.clearDetailList();
this.filterQuery.vueType = "supInvoice";
- filterInvoice(this.filterQuery)
+ filterOrder(this.filterQuery)
.then((response) => {
this.loading = false;
if (response.code === 20000) {
@@ -704,6 +794,58 @@ export default {
this.deptList = res.data || [];
});
},
+
+ getResultDetailList() {
+ if (isBlank(this.currentRow.billNo)) {
+ this.$message.error("请先选择需要查询的单据!")
+ return;
+ }
+
+ this.resultQuery.orderId = this.currentRow.billNo;
+ this.resultDetailLoading = true;
+ getCodeList(this.resultQuery).then((res) => {
+ this.resultDetailLoading = false;
+ if (res.code === 20000) {
+ this.resultDetailList = res.data.list || [];
+ this.resultTotal = res.data.total || 0;
+ } else {
+ this.$message.error(res.message);
+ this.resultDetailList = [];
+ this.resultTotal = 0;
+ }
+ }).catch((error) => {
+ this.resultDetailLoading = false;
+ this.$message.error(error.message);
+ this.resultDetailList = [];
+ this.resultTotal = 0;
+ });
+ },
+
+ getCodeDetailList() {
+ if (isBlank(this.currentRow.billNo)) {
+ this.$message.error("请先选择需要查询的单据!")
+ return;
+ }
+
+ this.codeQuery.orderIdFk = this.currentRow.billNo;
+ this.codeDetailLoading = true;
+ getCodeDetailList(this.codeQuery).then((res) => {
+ this.codeDetailLoading = false;
+ if (res.code === 20000) {
+ this.codeDetailList = res.data.list || [];
+ this.codeTotal = res.data.total || 0;
+ } else {
+ this.$message.error(res.message);
+ this.codeDetailList = [];
+ this.codeTotal = 0;
+ }
+ }).catch((error) => {
+ this.codeDetailLoading = true;
+ this.$message.error(error.message);
+ this.codeDetailList = [];
+ this.codeTotal = 0;
+ })
+ },
onBizReset() {
this.bizQuery = {
productName: null,