From 5a07bb3f4e4846ac5425b5ec73d4017e2b7c57dd Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期四, 16 四月 2026 12:44:40 +0800
Subject: [PATCH] erp上报完成时间修复
---
src/main/resources/mapper/WrkDetlLogMapper.xml | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/WrkDetlLogMapper.xml b/src/main/resources/mapper/WrkDetlLogMapper.xml
index bef4275..3d4214e 100644
--- a/src/main/resources/mapper/WrkDetlLogMapper.xml
+++ b/src/main/resources/mapper/WrkDetlLogMapper.xml
@@ -12,6 +12,12 @@
<result column="maktx" property="maktx"/>
<result column="batch" property="batch"/>
<result column="order_no" property="orderNo"/>
+ <result column="container_no" property="containerNo"/>
+ <result column="teu" property="teu"/>
+ <result column="plate_no" property="plateNo"/>
+ <result column="train_no" property="trainNo"/>
+ <result column="freq_type" property="freqType"/>
+ <result column="cube_number" property="cubeNumber"/>
<result column="specs" property="specs"/>
<result column="model" property="model"/>
@@ -45,6 +51,14 @@
<result column="appe_user" property="appeUser"/>
<result column="appe_time" property="appeTime"/>
<result column="memo" property="memo"/>
+ <result column="standby1" property="standby1" />
+ <result column="standby2" property="standby2" />
+ <result column="standby3" property="standby3" />
+ <result column="box_type1" property="boxType1" />
+ <result column="box_type2" property="boxType2" />
+ <result column="box_type3" property="boxType3" />
+ <result column="owner" property="owner"/>
+ <result column="uuid" property="uuid"/>
</resultMap>
<sql id="batchSeq">
@@ -65,6 +79,12 @@
<if test="batch != null and batch != ''">
and a.batch like concat('%',#{batch},'%')
</if>
+ <if test="sku != null and sku != ''">
+ and a.sku like concat('%',#{sku},'%')
+ </if>
+ <if test="memo != null and memo != ''">
+ and a.memo like concat('%',#{memo},'%')
+ </if>
<if test="matnr != null and matnr != ''">
and a.matnr like concat('%',#{matnr},'%')
</if>
--
Gitblit v1.9.1