From e9fccff6dd55c96fcd19ca8c588abf6d32bc5926 Mon Sep 17 00:00:00 2001 From: aike <17730485278@139.com> Date: Mon, 12 May 2025 17:52:30 +0800 Subject: [PATCH] =?UTF-8?q?demand:=20TMS=E7=B3=BB=E7=BB=9F=20-=20=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E8=B4=A6=E5=8D=95=E7=AE=A1=E7=90=86=20-=20=E8=88=AA?= =?UTF-8?q?=E4=BF=A1=E5=BC=80=E7=A5=A8=E8=AE=B0=E5=BD=95=20-=20=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E4=BC=98=E5=8C=96=E5=A6=82=E4=B8=8B=E5=9B=BE=E6=89=80?= =?UTF-8?q?=E7=A4=BA=20committer:=20heyu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/EmisSettleInvoiceChRecordMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml b/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml index 3953265fd..0054117f4 100644 --- a/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml @@ -73,13 +73,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" WHERE ir.apply_seq_no = a.apply_seq_no) as send_month, (SELECT b.settle_type FROM emis_settle_bill b - INNER JOIN emis_settle_invoice_record r ON b.settle_bill_no = r.settle_bill_no + INNER JOIN emis_settle_invoice_bill_rel r ON b.settle_bill_no = r.settle_bill_no WHERE r.apply_seq_no = a.apply_seq_no LIMIT 1) as settle_type, CASE WHEN (SELECT b.settle_type FROM emis_settle_bill b - INNER JOIN emis_settle_invoice_record r ON b.settle_bill_no = r.settle_bill_no + INNER JOIN emis_settle_invoice_bill_rel r ON b.settle_bill_no = r.settle_bill_no WHERE r.apply_seq_no = a.apply_seq_no LIMIT 1) = '2' THEN ( @@ -91,7 +91,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ) FROM emis_waybill w INNER JOIN emis_settle_invoice_rel ir ON w.bill_code = ir.bill_no - INNER JOIN emis_settle_invoice_record r ON ir.apply_seq_no = r.apply_seq_no + INNER JOIN emis_settle_invoice_bill_rel r ON ir.apply_seq_no = r.apply_seq_no INNER JOIN emis_settle_bill b ON r.settle_bill_no = b.settle_bill_no WHERE ir.apply_seq_no = a.apply_seq_no )