wms手持接口bug

master
mengjiao 3 months ago
parent a2ff4b3ecd
commit 53359c9556

@ -103,6 +103,11 @@ public class WmsSellOutEmbryoController extends BaseController {
return toAjax(wmsSellOutEmbryoService.updateWmsSellOutEmbryo(wmsSellOutEmbryo));
}
@Log(title = "成品销售出库", businessType = BusinessType.UPDATE)
@PostMapping("/editRE")
public AjaxResult editRE(@RequestBody WmsSellOutEmbryo wmsSellOutEmbryo) {
return toAjax(wmsSellOutEmbryoService.updateWmsSellOutEmbryoRE(wmsSellOutEmbryo));
}
/**
*
*/

@ -484,7 +484,7 @@ public class WmsToWCSmissionController {
return AjaxResult.success(wmsProductPutService.confirmFinishedProductSales(wmsSellOutEmbryo));
}
/**
* --
* --
*
*/
@PostMapping("/confirmFinishedProductSalesTS")

@ -99,4 +99,8 @@ public interface WmsSellOutEmbryoMapper {
public int insertWmsSellOutEmbryoOrder(WmsSellOutEmbryo wmsSellOutEmbryo);
public String selectwmsFpStorageNewsTS(String formattedDate);
int updateWmsSellOutEmbryoRE(WmsSellOutEmbryo wmsSellOutEmbryo);
public WmsSellOutEmbryo selectWmsSellOutEmbryoByIdRE(String id);
}

@ -854,7 +854,7 @@ public class WmsProductPutServiceImpl implements IWmsProductPutService {
List<WmsFpStorageNewsSn> wmsFpStorageNewsSns = wmsSellOutEmbryo.getWmsFpStorageNewsSns();
for (WmsFpStorageNewsSn wmsFpStorageNewsSn:
wmsFpStorageNewsSns) {
WmsSellOutEmbryo wmsSellOutEmbryo1 = wmsSellOutEmbryoMapper.selectWmsSellOutEmbryoById(wmsSellOutEmbryo.getId());
WmsSellOutEmbryo wmsSellOutEmbryo1 = wmsSellOutEmbryoMapper.selectWmsSellOutEmbryoByIdRE(wmsSellOutEmbryo.getId());
BigDecimal OutQuantity= wmsSellOutEmbryo1.getOutQuantity().add(wmsFpStorageNewsSn.getAmount());//已出加操作
int result = wmsSellOutEmbryo1.getPlanQuantity().compareTo(OutQuantity);
WmsSellOutEmbryo wmsSellOutEmbryoUpdate=new WmsSellOutEmbryo();
@ -865,10 +865,10 @@ public class WmsProductPutServiceImpl implements IWmsProductPutService {
}
wmsSellOutEmbryoUpdate.setId(wmsSellOutEmbryo.getId());
wmsSellOutEmbryoUpdate.setOutQuantity(OutQuantity);
wmsSellOutEmbryoMapper.updateWmsSellOutEmbryo(wmsSellOutEmbryoUpdate);
wmsSellOutEmbryoMapper.updateWmsSellOutEmbryoRE(wmsSellOutEmbryoUpdate);
WmsFpStorageNewsSn wmsFpStorageNewsSn1=new WmsFpStorageNewsSn();
wmsFpStorageNewsSn1.setStorageId(wmsFpStorageNewsSn.getStorageId());
wmsFpStorageNewsSn1.setUserDefined2(wmsFpStorageNewsSn.getAmount().toString());
wmsFpStorageNewsSn1.setAmount(wmsFpStorageNewsSn.getAmount());
wmsFpStorageNewsSn1.setActiveFlag("1");
wmsFpStorageNewsSn1.setProductCode(wmsSellOutEmbryo1.getProductCode());
wmsFpStorageNewsSnMapper.updateWmsFpStorageNewsSnOut(wmsFpStorageNewsSn1);
@ -890,7 +890,7 @@ public class WmsProductPutServiceImpl implements IWmsProductPutService {
wmsFpStorageNewsSn3.setAmount(wmsFpStorageNewsSn.getAmount());
wmsFpStorageNewsSn3.setBarCode(wmsSellOutEmbryo.getId());
wmsFpStorageNewsSn3.setFactoryCode(wmsSellOutEmbryo.getFactoryCode());
wmsFpStorageNewsSnMapper.insertWmsFpStorageNewsSnRecords(wmsFpStorageNewsSn3);
wmsFpStorageNewsSnMapper.insertWmsFpStorageNewsSnRecords(wmsFpStorageNewsSn3);//出库明细记录
WmsFpStorageNews wmsFpStorageNews=new WmsFpStorageNews();
wmsFpStorageNews.setActiveFlag("1");
wmsFpStorageNews.setWlCode(wmsFpStorageNewsSn2.getWlCode());

@ -212,6 +212,14 @@ public class WmsSellOutEmbryoServiceImpl implements IWmsSellOutEmbryoService {
return wmsSellOutEmbryoMapper.selectWmsSellOutEmbryoREListTS(wmsSellOutEmbryo);
}
@Override
@DS("#header.poolName")
public int updateWmsSellOutEmbryoRE(WmsSellOutEmbryo wmsSellOutEmbryo) {
//todo 需要修改
wmsSellOutEmbryo.setUpdateTime(DateUtils.getNowDate());
return wmsSellOutEmbryoMapper.updateWmsSellOutEmbryoRE(wmsSellOutEmbryo);
}
public List<WmsSellOutEmbryo> dayin( ) {
// 定义请求的URL地址

@ -374,7 +374,7 @@
</delete>
<update id="updateWmsFpStorageNewsSnOut">
UPDATE wms_fp_storage_news_sn
SET user_defined2 = COALESCE(user_defined2, 0) + #{userDefined2} -- 如果user_defined2为NULL则先将其设置为0再进行加法
SET amount = COALESCE(amount, 0) - #{amount} -- 如果user_defined2为NULL则先将其设置为0再进行加法
WHERE storage_id = #{storageId}
AND active_flag = '1';
</update>

@ -285,6 +285,7 @@
<if test="attr8 != null and attr8 != ''">and attr8 = #{attr8}</if>
<if test="attr9 != null and attr9 != ''">and attr9 = #{attr9}</if>
<if test="attr10 != null and attr10 != ''">and attr10 = #{attr10}</if>
<if test="id != null and id != ''">and id = #{id}</if>
</where>
ORDER BY stock_order DESC
</select>
@ -292,7 +293,50 @@
<include refid="selectWmsSellOutEmbryoVo"/>
where id = #{id}
</select>
<select id="selectWmsSellOutEmbryoByIdRE" parameterType="String" resultMap="WmsSellOutEmbryoResult">
SELECT
id,
delivery_order,
Item_number,
active_flag,
factory_code,
wh_code,
wa_code,
wl_code,
delivery_place,
product_name,
product_code,
product_sort,
specification,
unit_of_measure,
lot_number,
plan_quantity,
out_quantity,
status,
SAP_status,
SAP_proof,
SAP_message,
out_date,
attr1,
attr2,
attr3,
attr4,
attr5,
attr6,
attr7,
attr8,
attr9,
attr10,
create_by,
create_time,
update_by,
update_time,
stock_order stockOrder,
remark
FROM
wms_sell_out_embryo_order
where id = #{id}
</select>
<!-- 根据订单号和产品编码查询-->
<select id="selectWmsSellOutEmbryoByOrderCodeAndProductCode"
resultMap="WmsSellOutEmbryoResult">
@ -643,6 +687,50 @@
</trim>
where delivery_order = #{deliveryOrder}
</update>
<update id="updateWmsSellOutEmbryoRE" parameterType="WmsSellOutEmbryo">
update wms_sell_out_embryo_order
<trim prefix="SET" suffixOverrides=",">
<if test="itemNumber != null">Item_number = #{itemNumber},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="whCode != null">wh_code = #{whCode},</if>
<if test="waCode != null">wa_code = #{waCode},</if>
<if test="wlCode != null">wl_code = #{wlCode},</if>
<if test="deliveryPlace != null">delivery_place = #{deliveryPlace},</if>
<if test="productName != null">product_name = #{productName},</if>
<if test="productCode != null">product_code = #{productCode},</if>
<if test="productSort != null">product_sort = #{productSort},</if>
<if test="specification != null">specification = #{specification},</if>
<if test="unitOfMeasure != null">unit_of_measure = #{unitOfMeasure},</if>
<if test="lotNumber != null">lot_number = #{lotNumber},</if>
<if test="planQuantity != null">plan_quantity = #{planQuantity},</if>
<if test="outQuantity != null">out_quantity = #{outQuantity},</if>
<if test="status != null">status = #{status},</if>
<if test="sapStatus != null">SAP_status = #{sapStatus},</if>
<if test="sapProof != null">SAP_proof = #{sapProof},</if>
<if test="sapMessage != null">SAP_message = #{sapMessage},</if>
<if test="outDate != null">out_date = #{outDate},</if>
<if test="attr1 != null">attr1 = #{attr1},</if>
<if test="attr2 != null">attr2 = #{attr2},</if>
<if test="attr3 != null">attr3 = #{attr3},</if>
<if test="attr4 != null">attr4 = #{attr4},</if>
<if test="attr5 != null">attr5 = #{attr5},</if>
<if test="attr6 != null">attr6 = #{attr6},</if>
<if test="attr7 != null">attr7 = #{attr7},</if>
<if test="attr8 != null">attr8 = #{attr8},</if>
<if test="attr9 != null">attr9 = #{attr9},</if>
<if test="attr10 != null">attr10 = #{attr10},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="attr11 != null">attr11 = #{attr11},</if>
<if test="attr12 != null">attr12 = #{attr12},</if>
<if test="stockOrder != null">stock_order = #{stockOrder},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteWmsSellOutEmbryoById" parameterType="String">
delete from wms_sell_out_embryo where id = #{id}
</delete>

Loading…
Cancel
Save