|
|
|
@ -4,6 +4,7 @@ import java.util.List;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
|
|
import com.op.common.core.utils.uuid.IdUtils;
|
|
|
|
|
import com.op.wms.service.IOdsProcureOrderService;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
@ -24,7 +25,7 @@ import com.op.common.core.utils.poi.ExcelUtil;
|
|
|
|
|
import com.op.common.core.web.page.TableDataInfo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 包材出库单Controller
|
|
|
|
|
* 包材出库单Controllers
|
|
|
|
|
*
|
|
|
|
|
* @author Open Platform
|
|
|
|
|
* @date 2023-07-06
|
|
|
|
@ -34,7 +35,8 @@ import com.op.common.core.web.page.TableDataInfo;
|
|
|
|
|
public class OdsProcureOutOrderController extends BaseController {
|
|
|
|
|
@Autowired
|
|
|
|
|
private IOdsProcureOutOrderService odsProcureOutOrderService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private IOdsProcureOrderService odsProcureOrderService;
|
|
|
|
|
/**
|
|
|
|
|
* 查询包材出库单列表
|
|
|
|
|
*/
|
|
|
|
@ -174,4 +176,15 @@ public class OdsProcureOutOrderController extends BaseController {
|
|
|
|
|
String result = odsProcureOutOrderService.addwmsFpStorageNewsTS(orderList);
|
|
|
|
|
return success(result);
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 退货过账
|
|
|
|
|
*
|
|
|
|
|
* @param orderList
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/OutboundPostingzcSAPTH")
|
|
|
|
|
public AjaxResult OutboundPostingzcSAPTH(@RequestBody List<OdsProcureOutOrder> orderList) {
|
|
|
|
|
odsProcureOrderService.OutboundPostingzcSAPTH(orderList);
|
|
|
|
|
return success();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|