# sync-basalam/1.10.0/includes/Admin/Product/Data/Services/PriceService.php

ووسلام – همگام سازی ووکامرس و باسلام, version 1.10.0. 128 lines.

- Page: https://pluginprobe.com/plugins/sync-basalam/1.10.0/code/includes/Admin/Product/Data/Services/PriceService.php
- Raw: https://pluginprobe.com/plugins/sync-basalam/1.10.0/raw/includes/Admin/Product/Data/Services/PriceService.php
- Modified: 2026-07-11T07:54:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sync-basalam/1.10.0/code/includes/Admin/Product/Data/Services/PriceService.php#L10-L20`.

```php
<?php

namespace SyncBasalam\Admin\Product\Data\Services;

use SyncBasalam\Admin\Product\elements\SingleProduct\PriceIncreaseField;
use SyncBasalam\Admin\Settings\SettingsConfig;
use SyncBasalam\Services\Products\FetchCommission;

defined('ABSPATH') || exit;

class PriceService
{
    public function calculateFinalPrice($product): ?int
    {
        $price = $this->getBasePrice($product);
        if (!$price) return null;

        $categoryIds = $this->getCategoryIds($product);
        return $this->applyPriceCalculations($price, $categoryIds, $product);
    }

    private function getBasePrice($product)
    {
        $priceField = syncBasalamSettings()->getSettings(SettingsConfig::PRODUCT_PRICE_FIELD);
        $regularPrice = $product->get_regular_price();
        $salePrice = $product->get_sale_price();

        if ($priceField === 'original_price' || $priceField === 'sale_strikethrough_price') {
            return $regularPrice && is_numeric($regularPrice) ? floatval($regularPrice) : null;
        }

        if ($priceField === 'sale_price') {
            if ($salePrice && is_numeric($salePrice)) return floatval($salePrice);
            return $regularPrice && is_numeric($regularPrice) ? floatval($regularPrice) : null;
        }

        return null;
    }

    private function applyPriceCalculations(float $price, array $categoryIds, $product): ?int
    {
        $increaseValue = $this->getIncreaseValue($product);
        $roundMode = syncBasalamSettings()->getSettings(SettingsConfig::ROUND_PRICE);
        $currency = get_woocommerce_currency();

        $finalPrice = $this->convertToRial($price, $currency);
        if (!$finalPrice) return null;

        if ($increaseValue) $finalPrice = $this->applyIncrease($finalPrice, $increaseValue, $categoryIds);
        if ($roundMode && $roundMode != 'none') $finalPrice = $this->applyRounding($finalPrice, $roundMode);

        if ($finalPrice < 1000) return null;

        return intval($finalPrice);
    }

    private function getIncreaseValue($product): int
    {
        $productId = method_exists($product, 'get_id') ? intval($product->get_id()) : 0;

        if ($productId > 0) {
            $productIncrease = $this->getProductIncreaseMeta($productId);

            if ($productIncrease !== '' && is_numeric($productIncrease)) {
                return intval($productIncrease);
            }

            if (method_exists($product, 'get_parent_id')) {
                $parentId = intval($product->get_parent_id());
                $parentIncrease = $parentId > 0 ? $this->getProductIncreaseMeta($parentId) : '';

                if ($parentIncrease !== '' && is_numeric($parentIncrease)) {
                    return intval($parentIncrease);
                }
            }
        }

        return intval(syncBasalamSettings()->getSettings(SettingsConfig::INCREASE_PRICE_VALUE));
    }

    private function getProductIncreaseMeta(int $productId): string
    {
        return (string) get_post_meta($productId, PriceIncreaseField::META_KEY, true);
    }

    private function convertToRial(float $price, string $currency)
    {
        if ($currency === 'IRT') return $price * 10;
        if ($currency === 'IRHT') return $price * 10000;
        if ($currency === 'IRHR') return $price * 1000;

        return $price;
    }

    private function applyIncrease(float $price, int $increaseValue, array $categoryIds): float
    {
        if ($increaseValue === -1) return $this->applyCommissionCalculation($price, $categoryIds);

        if ($increaseValue <= 100) return $price + ($price * ($increaseValue / 100));

        return $price + ($increaseValue * 10);
    }

    private function applyCommissionCalculation(float $price, array $categoryIds): float
    {
        $categoryPercent = FetchCommission::fetchCategoryCommission($categoryIds);

        if ($categoryPercent > 0 && $categoryPercent < 100) return $price / (1 - ($categoryPercent / 100));
        else return $price;

    }

    private function applyRounding(float $price, $mode): float
    {
        if ($mode === 'up') return ceil($price / 10000) * 10000;

        if ($mode === 'down') return floor($price / 10000) * 10000;

        return $price;
    }

    private function getCategoryIds($product): array
    {
        $categoryService = new CategoryService();
        return $categoryService->getCategoryIds($product);
    }
}

```
