Commit 52d27eb215f69fd01861c9cc61f19ec449fe3bdf

Authored by yeqianyong
2 parents 7b05724f 0f435d3a

Merge remote-tracking branch 'origin/master_after20' into master_after20

... ... @@ -163,6 +163,7 @@ public class ShipmentsPlanDetailServiceImpl extends BaseMpServiceImpl<ShipmentsP
163 163
164 164 LambdaUpdateWrapper<ShipmentsPlanDetail> updateWrapper = Wrappers.lambdaUpdate(ShipmentsPlanDetail.class)
165 165 .set(ShipmentsPlanDetail::getShipmentsDate, shipmentDate)
  166 + .set(ShipmentsPlanDetail::getPreShipments, true)
166 167 .eq(ShipmentsPlanDetail::getId, id);
167 168 getBaseMapper().update(updateWrapper);
168 169
... ...
... ... @@ -48,7 +48,7 @@ public interface ShipmentsPlanDetailService extends BaseMpService<ShipmentsPlanD
48 48 void create(CreateShipmentsPlanDetailVo vo);
49 49
50 50 /**
51   - * 更新发货日期
  51 + * 更新发货日期且加入到后日预发
52 52 *
53 53 * @param shipmentDate 发货日期
54 54 */
... ...