mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-26 07:54:04 +00:00
117 lines
4.8 KiB
PHP
117 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Companies\ControllersLogic;
|
|
|
|
|
|
use App\Classes\Exceptions\CriteriaNotFulfilledException;
|
|
use App\Classes\General\Abstracts\AbstractControllerLogic;
|
|
use App\Classes\Modules\Addresses\Services\CreatesAddress;
|
|
use App\Classes\Modules\Addresses\Services\FetchesDistrict;
|
|
use App\Classes\Modules\Addresses\Standards\Rules\CanCreateAddress;
|
|
use App\Classes\Modules\Addresses\DataTransferObjects\AddressObject;
|
|
use App\Classes\Modules\Companies\Services\FetchesCompanyModule;
|
|
use App\Classes\Modules\Companies\Services\UpdatesCompanyEInvoiceInfo;
|
|
use App\Classes\Modules\Companies\DataTransferObjects\EInvoiceInfoDTO;
|
|
use App\Classes\Modules\Rules\Services\RuleEvaluator;
|
|
use App\Classes\Modules\Rules\Standards\Rules\CanPassEInvoicePromptedRule;
|
|
use App\Classes\ValueObjects\Constants\AddressType;
|
|
use App\Classes\ValueObjects\Constants\ApprovalStatus;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class UpdateCompanyEInvoiceInfoLogic extends AbstractControllerLogic
|
|
{
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function notification():array {
|
|
return [
|
|
'title' => 'EInvoice Info Update',
|
|
'message' => 'You have successfully updated company E-Invoice information'
|
|
];
|
|
}
|
|
|
|
/** @var CanCreateAddress */
|
|
private $canCreateAddress;
|
|
|
|
/** @var FetchesDistrict */
|
|
private $fetchesDistrict;
|
|
|
|
/** @var FetchesCompanyModule */
|
|
private $fetchesCompanyModule;
|
|
|
|
/** @var CreatesAddress */
|
|
private $createsAddress;
|
|
|
|
/** @var RuleEvaluator */
|
|
private $ruleEvaluator;
|
|
|
|
/** @var UpdatesCompanyEInvoiceInfo */
|
|
private $updatesCompanyEInvoiceInfo;
|
|
|
|
/** @var CanPassEInvoicePromptedRule */
|
|
private $canPassEInvoicePromptedRule;
|
|
|
|
/**
|
|
* UpdateCompanyEInvoiceInfoLogic constructor.
|
|
* @param CanCreateAddress $canCreateAddress
|
|
* @param FetchesDistrict $fetchesDistrict
|
|
* @param FetchesCompanyModule $fetchesCompanyModule
|
|
* @param CreatesAddress $createsAddress
|
|
* @param RuleEvaluator $ruleEvaluator;
|
|
* @param UpdatesCompanyEInvoiceInfo $updatesCompanyEInvoiceInfo;
|
|
* @param CanPassEInvoicePromptedRule $canPassEInvoicePromptedRule
|
|
*/
|
|
public function __construct(CanCreateAddress $canCreateAddress, FetchesDistrict $fetchesDistrict, FetchesCompanyModule $fetchesCompanyModule, CreatesAddress $createsAddress, RuleEvaluator $ruleEvaluator, UpdatesCompanyEInvoiceInfo $updatesCompanyEInvoiceInfo, CanPassEInvoicePromptedRule $canPassEInvoicePromptedRule)
|
|
{
|
|
$this->canCreateAddress = $canCreateAddress;
|
|
$this->fetchesDistrict = $fetchesDistrict;
|
|
$this->fetchesCompanyModule = $fetchesCompanyModule;
|
|
$this->createsAddress = $createsAddress;
|
|
$this->ruleEvaluator = $ruleEvaluator;
|
|
$this->updatesCompanyEInvoiceInfo = $updatesCompanyEInvoiceInfo;
|
|
$this->canPassEInvoicePromptedRule = $canPassEInvoicePromptedRule;
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @return JsonResponse
|
|
* @throws \App\Classes\Exceptions\AccessForbiddenException
|
|
* @throws \App\Classes\Exceptions\MalformedRequestException
|
|
* @throws \App\Classes\Exceptions\RequestValidationException
|
|
* @throws \App\Classes\Exceptions\CriteriaNotFulfilledException
|
|
*/
|
|
public function logic(Request $request) : JsonResponse
|
|
{
|
|
$dto = new EInvoiceInfoDTO($request->all());
|
|
$result = $this->ruleEvaluator->evaluate([
|
|
$this->canPassEInvoicePromptedRule,
|
|
], $dto);
|
|
|
|
if ($result->failed()) {
|
|
throw new CriteriaNotFulfilledException("- " . implode("<br>- ", $result->messages()));
|
|
}
|
|
|
|
$district = $this->fetchesDistrict->execute(['id' => $dto->districtId]);
|
|
$object = new AddressObject($dto->streetOne, $dto->streetTwo, $district->country_id, $dto->stateId, $district->id, $dto->postCode, AddressType::E_INVOICE, ApprovalStatus::APPROVED, 'E-Invoice');
|
|
|
|
//Update Address
|
|
$this->canCreateAddress->passes($object);
|
|
$companyModule = $this->fetchesCompanyModule->execute(['id' => $dto->companyModuleId]);
|
|
$this->createsAddress->execute($companyModule, $object);
|
|
|
|
// create billing address if not exists
|
|
$billingAddress = $companyModule->addresses->where('type', AddressType::BILLING)->where('status', ApprovalStatus::APPROVED)->first();
|
|
if (!$billingAddress) {
|
|
$billingAddress = new AddressObject($dto->streetOne, $dto->streetTwo, $district->country_id, $dto->stateId, $district->id, $dto->postCode, AddressType::BILLING, ApprovalStatus::APPROVED, 'Billing Address');
|
|
$this->createsAddress->execute($companyModule, $billingAddress);
|
|
}
|
|
|
|
//Update tin, msic code
|
|
$this->updatesCompanyEInvoiceInfo->execute($companyModule->company, $dto->tin, $dto->msicCode);
|
|
|
|
return $this->response([]);
|
|
}
|
|
}
|