local/modules/AdminOrderCreation/Service/PostageService.php line 31

  1. <?php
  2. namespace AdminOrderCreation\Service;
  3. use Propel\Runtime\ActiveQuery\Criteria;
  4. use Symfony\Component\DependencyInjection\ContainerInterface;
  5. use Thelia\Model\Base\ModuleQuery;
  6. use Thelia\TaxEngine\Calculator;
  7. use Thelia\Model\TaxRuleQuery;
  8. use Thelia\Model\Country;
  9. /**
  10.  * Class PostageService
  11.  *
  12.  * @package AdminOrderCreation\Service
  13.  * @author  François  Carfantan <f.carfantan@orange.fr>
  14.  */
  15. class PostageService{
  16.     protected $container;
  17.    /**
  18.      * PostageService constructor.
  19.      * @param ContainerInterface $container We need the container because we use a service from another module
  20.      * which is not mandatory, and using its service without it being installed will crash
  21.      */
  22.     public function __construct(
  23.         ContainerInterface $container,
  24.     )
  25.     {
  26.         $this->container $container;
  27.     }
  28.     function getPostageAmount(int $deliveryModuleId,float $weight=0.00,Country $country):float{
  29.         $areaId $country->getAreaId();
  30.         $deliveryModule ModuleQuery::create()
  31.         ->findOneById($deliveryModuleId);
  32.         $moduleInstance $deliveryModule->getModuleInstance($this->container);
  33.         if (method_exists($moduleInstance::class,'getPostageAmount')) {
  34.             return $moduleInstance::class::getPostageAmount($areaId,$weight);
  35.         } else {
  36.             return 0.00;
  37.         }
  38.     }
  39.     public function getPostageWithTaxRuleId(int $taxRuleId,Country $countrystring $untaxedPrice):string{
  40.         $calc = new Calculator();
  41.         $rule TaxRuleQuery::create()->findOneById($taxRuleId);
  42.         $calc->loadTaxRuleWithoutProduct($rule,$country);
  43.         return (float) $untaxedPrice $calc->getTaxAmountFromUntaxedPrice($untaxedPrice);
  44.     }
  45. }