| | |
| | | on duplicate key update |
| | | <trim suffixOverrides=","> |
| | | <if test="nameOfOrigin != null"> |
| | | name_of_origin = #{nameOfOrigin,jdbcType=VARCHAR}, |
| | | name_of_origin = #{nameOfOrigin,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="tableNum != null"> |
| | | table_num = #{tableNum,jdbcType=INTEGER}, |
| | |
| | | update_user= #{updateUser,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="updateTime != null"> |
| | | update_time #{updateTime,jdbcType=TIMESTAMP}, |
| | | update_time = #{updateTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="companyId != null"> |
| | | company_id = #{companyId,jdbcType=VARCHAR}, |
| | |
| | | </insert> |
| | | |
| | | <delete id="delete"> |
| | | update t_su_material_warehouse set isUse = 0 where id = #{id,jdbcType=VARCHAR} |
| | | update t_su_material_warehouse_record set is_use = 0 where id = #{id,jdbcType=VARCHAR} |
| | | </delete> |
| | | |
| | | <select id="selectPageList" resultType="com.thhy.materials.modules.biz.suMaterialWarehouse.entity.SuMaterialWarehouseEntity"> |
| | |
| | | t.id AS id, |
| | | t.name_of_origin AS nameOfOrigin, |
| | | t.table_num AS tableNum, |
| | | sd.dict_name AS materialName, |
| | | t.material_name AS materialName, |
| | | t.incoming_quantity AS incomingQuantity, |
| | | t.create_time AS createTime, |
| | | t.status AS status, |
| | |
| | | LEFT JOIN sys_users su1 on su1.user_id = t.update_user |
| | | LEFT JOIN sys_dict sd on sd.dict_id = t.material_name |
| | | where t.is_use = 1 and t.company_id = #{companyId} |
| | | <if test="tableNum != null and tableNum !=''"> |
| | | and t.table_num = #{tableNum} |
| | | </if> |
| | | <if test="type != null and type !=''"> |
| | | and t.type = #{type} |
| | | </if> |
| | | <if test="startTime != null and endTime != null"> |
| | | and t.create_time between #{startTime} and #{endTime} |
| | | </if> |
| | | order by t.create_time desc |
| | | </select> |
| | | |
| | |
| | | t.id AS id, |
| | | t.name_of_origin AS nameOfOrigin, |
| | | t.table_num AS tableNum, |
| | | sd.dict_name AS materialName, |
| | | t.material_name AS materialName, |
| | | t.incoming_quantity AS incomingQuantity, |
| | | t.create_time AS createTime, |
| | | t.status AS status, |
| | |
| | | t.id AS id, |
| | | t.table_num AS tableNum, |
| | | t.name_of_origin AS nameOfOrigin, |
| | | sd.dict_name AS materialName, |
| | | t.material_name AS materialName, |
| | | t.incoming_quantity AS incomingQuantity, |
| | | t.create_time AS createTime, |
| | | t.status AS status, |