yyb
3 天以前 8bba0a2d08c7abc07604a0654661efc884e5d751
src/api/inventoryManagement/stockInRecord.js
@@ -24,4 +24,21 @@
        method: "delete",
        data: ids,
    });
};
export const batchDeletePendingStockInRecords = (ids) => {
    return request({
        url: "/stockInRecord/pending",
        method: "delete",
        data: ids,
    });
};
// 批量审批入库记录(approvalStatus: approved/rejected)
export const batchApproveStockInRecords = (data) => {
    return request({
        url: "/stockInRecord/approve",
        method: "post",
        data,
    });
};