2e7714aa 刘嘉

1.菠萝派接口-发货,更新发货时间

2.菠萝派接口-商品查询,商品与SKU价格都是查询经销商
1 个父辈 a55a1469
......@@ -177,11 +177,11 @@
<resultMap id="downloadProductSkuBeanList" type="com.sibu.orderHelper.integral.model.DownloadProductSkuBean">
<result column="sku_id" property="SkuID"/>
<result column="sku_id" property="skuOuterID"/>
<result column="market_price" property="skuprice"/>
<result column="retail_price" property="skuprice"/>
<result column="stock_num" property="skuQuantity"/>
</resultMap>
<select id="getDownloadProductSkuBeanList" parameterType="java.lang.String" resultMap="downloadProductSkuBeanList">
SELECT sku_id,stock_num,market_price FROM sku WHERE im_product_id = #{productId}
SELECT sku_id,stock_num,retail_price FROM sku WHERE im_product_id = #{productId}
</select>
<resultMap id="sku" type="com.sibu.orderHelper.integral.model.DownloadProductSkuBean">
......@@ -384,7 +384,7 @@
<if test="buyerUsername !=null and buyerUsername !='' ">
buyer_username =#{buyerUsername},
</if>
erp_import = 1,erp_import_dt = now(),
erp_import = 1,erp_import_dt = now(),ship_dt = now(),
order_status = 4
</set>
WHERE order_code = #{orderCode}
......