wms成品部分代码修改26

master
mengjiao 10 months ago
parent 1af3940012
commit b0c711c443

@ -334,8 +334,8 @@ public class WmsToWCSmissionController {
*
*/
@PostMapping("/selectFinishedProductTransferAndOutbound")
public AjaxResult selectFinishedProductTransferAndOutbound(@RequestBody WmsRuturnPutEmbryo wmsRuturnPutEmbryo) {
return AjaxResult.success(wmsProductPutService.FinishedProductSalesReturnConfirm(wmsRuturnPutEmbryo));
public AjaxResult selectFinishedProductTransferAndOutbound(@RequestBody WmsAllocationOutEmbryo wmsRuturnPutEmbryo) {
return AjaxResult.success(wmsProductPutService.selectFinishedProductTransferAndOutbound(wmsRuturnPutEmbryo));
}

@ -0,0 +1,15 @@
package com.op.wms.domain;
import com.op.common.core.web.domain.BaseEntity;
/**
*
*/
public class WmsAllocationOutEmbryo extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* ID
*/
private String id;
}

@ -117,4 +117,7 @@ public interface IWmsProductPutService {
* @return
*/
String FinishedProductSalesReturnConfirm(WmsRuturnPutEmbryo wmsRuturnPutEmbryo);
List<WmsAllocationOutEmbryo> selectFinishedProductTransferAndOutbound(WmsAllocationOutEmbryo wmsRuturnPutEmbryo);
}

@ -883,4 +883,11 @@ public class WmsProductPutServiceImpl implements IWmsProductPutService {
}
return SUCCESS;
}
@Override
public List<WmsAllocationOutEmbryo> selectFinishedProductTransferAndOutbound(WmsAllocationOutEmbryo wmsRuturnPutEmbryo) {
return null;
}
}

Loading…
Cancel
Save