spring
2026-05-07 20b809284dac7a6fa94b4585e37de2808cf486e9
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,
    });
};