From e696d742629d66fbe6be4a3bfdcc4d77f72e07fd Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Wed, 30 Oct 2024 09:51:46 +0800 Subject: [PATCH] =?UTF-8?q?HL-6335SCP=E6=AD=A3=E5=BC=8F=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=EF=BC=8C=E4=BE=9B=E5=BA=94=E5=95=86=E5=8F=91=E7=A5=A8=E8=B4=A2?= =?UTF-8?q?=E5=8A=A1=E7=82=B9=E5=87=BB=E5=AE=A1=E6=A0=B8=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E5=90=8E=EF=BC=8C=E8=B4=A2=E5=8A=A1=E5=87=AD=E8=AF=81=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0=E5=AD=97=E6=AE=B5=E6=9B=B4=E6=94=B9=E4=B8=BA=EF=BC=9A?= =?UTF-8?q?=E6=94=B6+=E4=BE=9B=E5=BA=94=E5=95=86=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E5=89=8D6=E4=B8=AA=E6=B1=89=E5=AD=97+=E5=8F=91=E7=A5=A8+?= =?UTF-8?q?=E5=8F=91=E7=A5=A8=E5=8F=B7=E5=90=8E5=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierinvoice/supplierinvoiceRequestMain/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue index da7d1e0fe..58e404fdd 100644 --- a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue +++ b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue @@ -1138,7 +1138,7 @@ const submitPurchasePass = async (id, submitData) => { const formFinanceRef = ref() const handleFinanceApp = async (row) => { row.postingDate = dayjs().valueOf() - row.voucherNumberRemark = '收到' + row.supplierName + '发票' + row.goldenTaxInvoiceNumber + row.voucherNumberRemark = `收到${row.supplierName?row.supplierName.slice(0,6):''}发票${row.goldenTaxInvoiceNumber?row.goldenTaxInvoiceNumber.length>5?row.goldenTaxInvoiceNumber.slice(row.goldenTaxInvoiceNumber.length-5):row.goldenTaxInvoiceNumber:''}` formFinanceRef.value.open('update', row, null, '财务通过', '财务通过') }