mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
78 lines
3.2 KiB
PHP
78 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Bookings\Services;
|
|
|
|
|
|
use App\Classes\Exceptions\MalformedRequestException;
|
|
use App\Classes\Modules\Bookings\DataTransferObjects\CalculationObject;
|
|
use App\Classes\Modules\Companies\Services\FetchesCompanyServiceSettings;
|
|
use App\Classes\Modules\Currencies\DataTransferObjects\CurrencyConversionObject;
|
|
use App\Classes\Modules\Vouchers\DataTransferObjects\ValidatedVoucherObject;
|
|
use App\Classes\Modules\Currencies\Services\FetchesCurrency;
|
|
use App\Classes\Modules\Vouchers\Services\ValidatesVoucher;
|
|
use App\Models\Company;
|
|
use App\Models\Currency;
|
|
|
|
class FetchesBookingQuotation
|
|
{
|
|
|
|
/** @var FetchesCompanyServiceSettings */
|
|
private $fetchesCompanyServiceSettings;
|
|
|
|
/** @var FetchesCurrency */
|
|
private $fetchesCurrency;
|
|
|
|
/** @var ValidatesVoucher */
|
|
private $validatesVoucher;
|
|
|
|
/**
|
|
* FetchesBookingQuotation constructor.
|
|
* @param FetchesCompanyServiceSettings $fetchesCompanyServiceSettings
|
|
* @param FetchesCurrency $fetchesCurrency
|
|
*/
|
|
public function __construct(FetchesCompanyServiceSettings $fetchesCompanyServiceSettings, FetchesCurrency $fetchesCurrency, ValidatesVoucher $validatesVoucher)
|
|
{
|
|
$this->fetchesCompanyServiceSettings = $fetchesCompanyServiceSettings;
|
|
$this->fetchesCurrency = $fetchesCurrency;
|
|
$this->validatesVoucher = $validatesVoucher;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param Company $company
|
|
* @param CurrencyConversionObject $conversionObject
|
|
* @param string $voucherCode
|
|
* @return CalculationObject
|
|
* @throws MalformedRequestException
|
|
*/
|
|
public function execute(Company $company, CurrencyConversionObject $conversionObject, ?string $voucherCode = null){
|
|
if($conversionObject->getAmount() <= 0) throw new MalformedRequestException('Your transfer must be greater than zero.');
|
|
|
|
$configurations = $this->fetchesCompanyServiceSettings->execute($company, $conversionObject);
|
|
|
|
/** @var Currency $currency */
|
|
$currency = $this->fetchesCurrency->execute(['id' => $conversionObject->getCurrencyId()]);
|
|
if($conversionObject->getAmount() > $configurations->getMaxLimit()) throw new MalformedRequestException('Your transfer can\'t be greater than '.number_format( floatval(str_replace(',', '', $configurations->getMaxLimit())), 2, '.', ',').' '.$currency->short_code);
|
|
|
|
$calculationObject = new CalculationObject($conversionObject, $configurations, null);
|
|
|
|
//Voucherify
|
|
if($voucherCode){
|
|
$employee = $company->employees()->first();
|
|
|
|
$result = $this->validatesVoucher->execute($voucherCode, $calculationObject->getSubTotal(), $employee);
|
|
$voucher = [
|
|
"code" => $result->code,
|
|
"discount" => $result->discount,
|
|
"metadata" => $result->metadata,
|
|
"order" => $result->order,
|
|
];
|
|
$validatedVoucherObject = new ValidatedVoucherObject(isset($voucher['metadata']->name) ? $voucher['metadata']->name: "", $voucher['code'], $voucher['discount']->type, $voucher['order']->total_discount_amount, $voucher['order']->total_amount);
|
|
$calculationObject = new CalculationObject($conversionObject, $configurations, $validatedVoucherObject);
|
|
}
|
|
|
|
return $calculationObject;
|
|
}
|
|
|
|
}
|