zhangwencui
2026-05-06 4ce344581a59622b17eab10e2b2f4cdc84cc9a69
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,
    });
};