refactor(FE-363): Rename logistic stock report API method

This commit is contained in:
rstubryan
2025-12-17 10:00:35 +07:00
parent 204a1098a3
commit 9f521a6a08
2 changed files with 3 additions and 3 deletions
@@ -230,7 +230,7 @@ const PurchasesPerSupplierTab = () => {
}
: null,
([, params]) =>
LogisticApi.getLogisticStockReport(
LogisticApi.getLogisticPurchasePerSupplierReport(
params.area_id,
params.supplier_id,
params.product_id,
@@ -296,7 +296,7 @@ const PurchasesPerSupplierTab = () => {
}
: null,
([, params]) =>
LogisticApi.getLogisticStockReport(
LogisticApi.getLogisticPurchasePerSupplierReport(
params.area_id,
params.supplier_id,
params.product_id,
+1 -1
View File
@@ -11,7 +11,7 @@ export class LogisticApiService extends BaseApiService<
super(basePath);
}
async getLogisticStockReport(
async getLogisticPurchasePerSupplierReport(
area_id?: number,
supplier_id?: number,
product_id?: number,