yys
3 天以前 bf84fec7d8dd5e7fbcc93030b8d83da7ec0ece91
src/main/resources/mapper/stock/StockUninventoryMapper.xml
@@ -25,7 +25,7 @@
            </if>
            update_time = now()
        </set>
        where product_model_id = #{ew.productModelId} and qualitity >= #{ew.qualitity}
        where product_model_id = #{ew.productModelId} and stock_location = #{ew.stockLocation} and qualitity >= #{ew.qualitity}
    </update>
    <update id="updateAddStockUnInventory">
        update stock_uninventory
@@ -41,7 +41,7 @@
            </if>
            update_time = now()
        </set>
        where product_model_id = #{ew.productModelId}
        where product_model_id = #{ew.productModelId} and stock_location = #{ew.stockLocation}
    </update>
    <select id="pageStockUninventory" resultType="com.ruoyi.stock.dto.StockUninventoryDto">
        select su.id,
@@ -59,12 +59,12 @@
        from stock_uninventory su
        left join product_model pm on su.product_model_id = pm.id
        left join product p on pm.product_id = p.id
        where 1 = 1
        where pm.product_type = #{ew.productType}
        <if test="ew.productName != null and ew.productName !=''">
            and p.product_name like concat('%',#{ew.productName},'%')
        </if>
    </select>
    <select id="listStockInventoryExportData" resultType="com.ruoyi.stock.execl.StockInventoryExportData">
    <select id="listStockInventoryExportData" resultType="com.ruoyi.stock.execl.StockUnInventoryExportData">
        select su.*,
        pm.model,
        pm.unit,