You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
828 B
24 lines
828 B
/**
|
|
* 申请单明细通用查询API - rqrq
|
|
*/
|
|
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// ========== 查询相关 ========== - rqrq
|
|
|
|
/**
|
|
* 查询申请单订单列表(分页)- rqrq
|
|
*/
|
|
export const searchNotifyOrderList = data => createAPI('/automatedWarehouse/notifyDetailQuery/searchNotifyOrderList', 'post', data)
|
|
|
|
/**
|
|
* 查询申请单物料明细(根据notify_no+site+item_no)- rqrq
|
|
*/
|
|
export const searchMaterialListDetail = data => createAPI('/automatedWarehouse/notifyDetailQuery/searchMaterialListDetail', 'post', data)
|
|
|
|
// ========== 业务操作 ========== - rqrq
|
|
|
|
/**
|
|
* 关闭申请单任务 - rqrq
|
|
* 功能:更新transport_flag为'Y',解除栈板调用状态
|
|
*/
|
|
export const closeNotifyTask = data => createAPI('/automatedWarehouse/notifyDetailQuery/closeNotifyTask', 'post', data)
|