From c520c2792c1a937590b1c3acb98f88476d30e56f Mon Sep 17 00:00:00 2001 From: jyy <jyy> Date: Wed, 09 Jun 2021 21:01:08 +0800 Subject: [PATCH] 销售人员不计算手工提成 --- zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopDeliveryInfoDao.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopDeliveryInfoDao.xml b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopDeliveryInfoDao.xml index fecc71b..0a9cbab 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopDeliveryInfoDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopDeliveryInfoDao.xml @@ -65,6 +65,7 @@ logistics_status, delivery_time, pick_up_status, + receive_id, shop_id </sql> @@ -87,6 +88,7 @@ #{item.logisticsStatus}, #{item.deliveryTime}, #{item.pickUpStatus}, + #{item.receiveId}, #{item.shopId} </sql> @@ -239,6 +241,9 @@ <if test="record.orderId != null "> order_id = #{record.orderId}, </if> + <if test="record.receiveId != null "> + receive_id = #{record.receiveId}, + </if> <if test="record.userId != null and record.userId != '' "> user_id = #{record.userId}, </if> -- Gitblit v1.9.1