From f2dc7eae53d2dd4b63b5201ab39105491b0285ba Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Tue, 29 Apr 2025 14:14:30 +0200 Subject: [PATCH] improved new features --- .../WarehouseArticleDistributorController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/WarehouseArticleDistributor/WarehouseArticleDistributorController.php b/application/WarehouseArticleDistributor/WarehouseArticleDistributorController.php index d001982d8..4ab14349e 100644 --- a/application/WarehouseArticleDistributor/WarehouseArticleDistributorController.php +++ b/application/WarehouseArticleDistributor/WarehouseArticleDistributorController.php @@ -67,8 +67,8 @@ class WarehouseArticleDistributorController extends TTCrud { } protected function afterDelete($postData) { - WarehouseArticleController::updateCheapestPurchasePrice($postData); - WarehouseArticleController::updateSellPrices($postData); + WarehouseArticleController::updateCheapestPurchasePrice($postData["id"]); + WarehouseArticleController::updateSellPrices($postData["id"]); } protected function getHistoryAction() {