|
@@ -1,30 +1,30 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.hcloud.microserver.system.bank.dao.GoodsOrderDetailMapper">
|
|
|
- <resultMap id="BaseResultMap" type="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
- <id column="guid" jdbcType="CHAR" property="guid" />
|
|
|
- <result column="fk_order_guid" jdbcType="CHAR" property="fkOrderGuid" />
|
|
|
- <result column="fk_goods_guid" jdbcType="CHAR" property="fkGoodsGuid" />
|
|
|
- <result column="goods_name" jdbcType="VARCHAR" property="goodsName" />
|
|
|
- <result column="goods_price" jdbcType="DECIMAL" property="goodsPrice" />
|
|
|
- <result column="sale_num" jdbcType="DECIMAL" property="saleNum" />
|
|
|
- <result column="amount" jdbcType="DECIMAL" property="amount" />
|
|
|
- <result column="state" jdbcType="INTEGER" property="state" />
|
|
|
- <result column="create_user" jdbcType="CHAR" property="createUser" />
|
|
|
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
- <association property="goodsInfo" column="fk_goods_guid"
|
|
|
- select="GoodsInfoMapper.selectByPrimaryKey"/>
|
|
|
- </resultMap>
|
|
|
- <sql id="Base_Column_List">
|
|
|
+ <resultMap id="BaseResultMap" type="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
+ <id column="guid" jdbcType="CHAR" property="guid"/>
|
|
|
+ <result column="fk_order_guid" jdbcType="CHAR" property="fkOrderGuid"/>
|
|
|
+ <result column="fk_goods_guid" jdbcType="CHAR" property="fkGoodsGuid"/>
|
|
|
+ <result column="goods_name" jdbcType="VARCHAR" property="goodsName"/>
|
|
|
+ <result column="goods_price" jdbcType="DECIMAL" property="goodsPrice"/>
|
|
|
+ <result column="sale_num" jdbcType="DECIMAL" property="saleNum"/>
|
|
|
+ <result column="amount" jdbcType="DECIMAL" property="amount"/>
|
|
|
+ <result column="state" jdbcType="INTEGER" property="state"/>
|
|
|
+ <result column="create_user" jdbcType="CHAR" property="createUser"/>
|
|
|
+ <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
|
|
|
+ <association property="goodsInfo" column="fk_goods_guid"
|
|
|
+ select="com.hcloud.microserver.system.bank.dao.GoodsInfoMapper.selectByPrimaryKey"/>
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
guid, fk_order_guid, fk_goods_guid, goods_name, goods_price, sale_num, amount, state,
|
|
|
create_user, create_time
|
|
|
</sql>
|
|
|
- <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
- select
|
|
|
- <include refid="Base_Column_List" />
|
|
|
- from t_goods_order_detail
|
|
|
- where guid = #{guid,jdbcType=CHAR}
|
|
|
- </select>
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List"/>
|
|
|
+ from t_goods_order_detail
|
|
|
+ where guid = #{guid,jdbcType=CHAR}
|
|
|
+ </select>
|
|
|
<select id="getOrderDetailListByOrderId" parameterType="java.lang.String"
|
|
|
resultType="com.hcloud.microserver.system.bank.bo.OrderDetailInfoBO">
|
|
|
SELECT
|
|
@@ -52,7 +52,7 @@
|
|
|
delete from t_goods_order_detail
|
|
|
where guid = #{guid,jdbcType=CHAR}
|
|
|
</delete>
|
|
|
- <insert id="insert" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
+ <insert id="insert" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
insert into t_goods_order_detail (guid, fk_order_guid, fk_goods_guid,
|
|
|
goods_name, goods_price, sale_num,
|
|
|
amount, state, create_user,
|
|
@@ -62,118 +62,119 @@
|
|
|
#{amount,jdbcType=DECIMAL}, #{state,jdbcType=INTEGER}, #{createUser,jdbcType=CHAR},
|
|
|
#{createTime,jdbcType=TIMESTAMP})
|
|
|
</insert>
|
|
|
- <insert id="batchSaveOrderDetailList">
|
|
|
+ <insert id="batchSaveOrderDetailList">
|
|
|
insert into t_goods_order_detail (guid, fk_order_guid, fk_goods_guid,
|
|
|
- goods_name, goods_price, sale_num,
|
|
|
- amount, state,create_time) values
|
|
|
- <foreach collection="list" item="bean" separator="," open="" close="">
|
|
|
- ( REPLACE(UUID(),'-',''), #{bean.fkOrderGuid,jdbcType=CHAR}, #{bean.fkGoodsGuid,jdbcType=CHAR},
|
|
|
- #{bean.goodsName,jdbcType=VARCHAR}, #{bean.goodsPrice,jdbcType=DECIMAL}, #{bean.saleNum,jdbcType=DECIMAL},
|
|
|
- #{bean.amount,jdbcType=DECIMAL}, #{bean.state,jdbcType=INTEGER},#{bean.createTime,jdbcType=TIMESTAMP})
|
|
|
- </foreach>
|
|
|
- </insert>
|
|
|
- <insert id="insertSelective" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
- insert into t_goods_order_detail
|
|
|
- <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
- <if test="guid != null">
|
|
|
- guid,
|
|
|
- </if>
|
|
|
- <if test="fkOrderGuid != null">
|
|
|
- fk_order_guid,
|
|
|
- </if>
|
|
|
- <if test="fkGoodsGuid != null">
|
|
|
- fk_goods_guid,
|
|
|
- </if>
|
|
|
- <if test="goodsName != null">
|
|
|
- goods_name,
|
|
|
- </if>
|
|
|
- <if test="goodsPrice != null">
|
|
|
- goods_price,
|
|
|
- </if>
|
|
|
- <if test="saleNum != null">
|
|
|
- sale_num,
|
|
|
- </if>
|
|
|
- <if test="amount != null">
|
|
|
- amount,
|
|
|
- </if>
|
|
|
- <if test="state != null">
|
|
|
- state,
|
|
|
- </if>
|
|
|
- <if test="createUser != null">
|
|
|
- create_user,
|
|
|
- </if>
|
|
|
- <if test="createTime != null">
|
|
|
- create_time,
|
|
|
- </if>
|
|
|
- </trim>
|
|
|
- <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
- <if test="guid != null">
|
|
|
- #{guid,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="fkOrderGuid != null">
|
|
|
- #{fkOrderGuid,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="fkGoodsGuid != null">
|
|
|
- #{fkGoodsGuid,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="goodsName != null">
|
|
|
- #{goodsName,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="goodsPrice != null">
|
|
|
- #{goodsPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="saleNum != null">
|
|
|
- #{saleNum,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="amount != null">
|
|
|
- #{amount,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="state != null">
|
|
|
- #{state,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="createUser != null">
|
|
|
- #{createUser,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="createTime != null">
|
|
|
- #{createTime,jdbcType=TIMESTAMP},
|
|
|
- </if>
|
|
|
- </trim>
|
|
|
- </insert>
|
|
|
+ goods_name, goods_price, sale_num,
|
|
|
+ amount, state,create_time) values
|
|
|
+ <foreach collection="list" item="bean" separator="," open="" close="">
|
|
|
+ ( REPLACE(UUID(),'-',''), #{bean.fkOrderGuid,jdbcType=CHAR}, #{bean.fkGoodsGuid,jdbcType=CHAR},
|
|
|
+ #{bean.goodsName,jdbcType=VARCHAR}, #{bean.goodsPrice,jdbcType=DECIMAL}, #{bean.saleNum,jdbcType=DECIMAL},
|
|
|
+ #{bean.amount,jdbcType=DECIMAL}, #{bean.state,jdbcType=INTEGER},#{bean.createTime,jdbcType=TIMESTAMP})
|
|
|
+ </foreach>
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
+ insert into t_goods_order_detail
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="guid != null">
|
|
|
+ guid,
|
|
|
+ </if>
|
|
|
+ <if test="fkOrderGuid != null">
|
|
|
+ fk_order_guid,
|
|
|
+ </if>
|
|
|
+ <if test="fkGoodsGuid != null">
|
|
|
+ fk_goods_guid,
|
|
|
+ </if>
|
|
|
+ <if test="goodsName != null">
|
|
|
+ goods_name,
|
|
|
+ </if>
|
|
|
+ <if test="goodsPrice != null">
|
|
|
+ goods_price,
|
|
|
+ </if>
|
|
|
+ <if test="saleNum != null">
|
|
|
+ sale_num,
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ amount,
|
|
|
+ </if>
|
|
|
+ <if test="state != null">
|
|
|
+ state,
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null">
|
|
|
+ create_user,
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="guid != null">
|
|
|
+ #{guid,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="fkOrderGuid != null">
|
|
|
+ #{fkOrderGuid,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="fkGoodsGuid != null">
|
|
|
+ #{fkGoodsGuid,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="goodsName != null">
|
|
|
+ #{goodsName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="goodsPrice != null">
|
|
|
+ #{goodsPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="saleNum != null">
|
|
|
+ #{saleNum,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ #{amount,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="state != null">
|
|
|
+ #{state,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null">
|
|
|
+ #{createUser,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
|
|
|
- <update id="updateByPrimaryKeySelective" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
- update t_goods_order_detail
|
|
|
- <set>
|
|
|
- <if test="fkOrderGuid != null">
|
|
|
- fk_order_guid = #{fkOrderGuid,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="fkGoodsGuid != null">
|
|
|
- fk_goods_guid = #{fkGoodsGuid,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="goodsName != null">
|
|
|
- goods_name = #{goodsName,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="goodsPrice != null">
|
|
|
- goods_price = #{goodsPrice,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="saleNum != null">
|
|
|
- sale_num = #{saleNum,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="amount != null">
|
|
|
- amount = #{amount,jdbcType=DECIMAL},
|
|
|
- </if>
|
|
|
- <if test="state != null">
|
|
|
- state = #{state,jdbcType=INTEGER},
|
|
|
- </if>
|
|
|
- <if test="createUser != null">
|
|
|
- create_user = #{createUser,jdbcType=CHAR},
|
|
|
- </if>
|
|
|
- <if test="createTime != null">
|
|
|
- create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
- </if>
|
|
|
- </set>
|
|
|
- where guid = #{guid,jdbcType=CHAR}
|
|
|
- </update>
|
|
|
- <update id="updateByPrimaryKey" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
+ <update id="updateByPrimaryKeySelective"
|
|
|
+ parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
+ update t_goods_order_detail
|
|
|
+ <set>
|
|
|
+ <if test="fkOrderGuid != null">
|
|
|
+ fk_order_guid = #{fkOrderGuid,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="fkGoodsGuid != null">
|
|
|
+ fk_goods_guid = #{fkGoodsGuid,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="goodsName != null">
|
|
|
+ goods_name = #{goodsName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="goodsPrice != null">
|
|
|
+ goods_price = #{goodsPrice,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="saleNum != null">
|
|
|
+ sale_num = #{saleNum,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ amount = #{amount,jdbcType=DECIMAL},
|
|
|
+ </if>
|
|
|
+ <if test="state != null">
|
|
|
+ state = #{state,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="createUser != null">
|
|
|
+ create_user = #{createUser,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where guid = #{guid,jdbcType=CHAR}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderDetail">
|
|
|
update t_goods_order_detail
|
|
|
set fk_order_guid = #{fkOrderGuid,jdbcType=CHAR},
|
|
|
fk_goods_guid = #{fkGoodsGuid,jdbcType=CHAR},
|
|
@@ -187,15 +188,32 @@
|
|
|
where guid = #{guid,jdbcType=CHAR}
|
|
|
</update>
|
|
|
|
|
|
- <select id="selectByGoodsOrderInfoGuid" parameterType="string" resultMap="BaseResultMap">
|
|
|
- select
|
|
|
- <include refid="Base_Column_List"/>
|
|
|
- from t_goods_order_detail
|
|
|
- where state = 1
|
|
|
- and fk_order_guid = #{goodsOrderInfoGuid,jdbcType=VARCHAR}
|
|
|
+ <select id="selectByGoodsOrderInfoGuid" parameterType="string" resultType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderInfoVo">
|
|
|
+ SELECT
|
|
|
+ b.guid AS guid,
|
|
|
+ b.order_no AS orderNo,
|
|
|
+ b.pay_no AS payNo,
|
|
|
+ b.create_time AS createTime,
|
|
|
+ b.customer_name AS customerName,
|
|
|
+ b.customer_type AS customerType,
|
|
|
+ b.state AS state,
|
|
|
+ c.account AS account,
|
|
|
+ c.phone AS phone,
|
|
|
+ d.type_name AS typeName,
|
|
|
+ e.pay_channel AS payChannel
|
|
|
+ FROM
|
|
|
+ t_goods_order_info b
|
|
|
+ LEFT JOIN t_customer_info c ON b.fk_customer_guid = c.guid
|
|
|
+ LEFT JOIN t_customer_company_type d ON b.customer_type = d.guid
|
|
|
+ LEFT JOIN t_goods_pay_order e ON e.fk_order_id = b.guid
|
|
|
+ WHERE
|
|
|
+ b.state = 1
|
|
|
+ AND e.pay_status = 2
|
|
|
+ AND b.guid = #{goodsOrderInfoGuid} LIMIT 1
|
|
|
</select>
|
|
|
- <!-- 根据订单guid查询订单项 -->
|
|
|
- <select id="queryOrderDetail" parameterType="String" resultType="com.hcloud.microserver.system.bank.bo.OfflineOrderItemBO">
|
|
|
+ <!-- 根据订单guid查询订单项 -->
|
|
|
+ <select id="queryOrderDetail" parameterType="String"
|
|
|
+ resultType="com.hcloud.microserver.system.bank.bo.OfflineOrderItemBO">
|
|
|
SELECT g.goods_code AS goodsCode,
|
|
|
g.goods_type AS goodsType,
|
|
|
d.goods_name AS goodsName,
|
|
@@ -206,4 +224,29 @@
|
|
|
FROM t_goods_order_detail d LEFT JOIN t_goods_info g ON d.fk_goods_guid=g.guid
|
|
|
WHERE d.fk_order_guid=#{orderGuid}
|
|
|
</select>
|
|
|
+ <select id="findByGoodsOrderDetailByOrderId"
|
|
|
+ resultType="com.hcloud.microserver.system.facade.carbon.entity.GoodsOrderInfoDetailBo">
|
|
|
+ SELECT
|
|
|
+ a.guid AS guid,
|
|
|
+ -- a.fk_order_guid AS fkOrderGuid,
|
|
|
+ -- a.fk_goods_guid AS fkGoodsGuid,
|
|
|
+ a.goods_name AS goodsName,
|
|
|
+ a.goods_price AS goodsPrice,
|
|
|
+ a.sale_num AS saleNum,
|
|
|
+ a.amount AS amount,
|
|
|
+ -- a.state AS state,
|
|
|
+ -- a.create_user AS createUser,
|
|
|
+ -- a.create_time AS createTime,
|
|
|
+ b.goods_code AS goodsCode,
|
|
|
+ b.goods_sale_date AS goodsSaleDate,
|
|
|
+ e.type_name AS typeName
|
|
|
+FROM
|
|
|
+ t_goods_order_detail a
|
|
|
+LEFT JOIN t_goods_info b ON a.fk_goods_guid = b.guid
|
|
|
+LEFT JOIN t_goods_detail c ON c.fk_goods_guid = a.fk_goods_guid
|
|
|
+LEFT JOIN t_product_info d ON c.fk_product_guid = d.guid
|
|
|
+LEFT JOIN t_product_type e ON d.fk_product_type = e.guid
|
|
|
+WHERE
|
|
|
+ a.fk_order_guid = #{orderGuid}
|
|
|
+ </select>
|
|
|
</mapper>
|