src\Service\BexioService.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\Service;
  3. use App\Entity\SupplementType;
  4. use App\Entity\Survey;
  5. use App\Entity\SurveyRate;
  6. use App\Entity\UserSurvey;
  7. use Bexio\Client;
  8. use Bexio\Resource\Accounts;
  9. use Bexio\Resource\Contact;
  10. use Bexio\Resource\Invoice;
  11. use Bexio\Resource\Item;
  12. use Doctrine\ORM\EntityManagerInterface;
  13. use Throwable;
  14. class BexioService
  15. {
  16.     private $client null;
  17.     /**
  18.      * @var EntityManagerInterface
  19.      */
  20.     private $em;
  21.     private $envVerification;
  22.     public function __construct(EntityManagerInterface $em)
  23.     {
  24.         $this->em $em;
  25.         $this->client = new Client();
  26.         $this->client->setAccessToken($_ENV['BEXIO_TOKEN']);
  27.         $this->envVerification 'prod' == $_ENV['APP_ENV'];
  28. //        $this->envVerification = true;
  29.     }
  30.     public function getContactById($id)
  31.     {
  32.         $bexio = new Contact($this->client);
  33.         $results $bexio->searchContacts([[
  34.             'field' => 'id',
  35.             'value' => $id,
  36.             'criteria' => '=',
  37.         ]]);
  38.         if (count($results)) {
  39.             return $results[0];
  40.         }
  41.         return null;
  42.     }
  43.     public function getContact(UserSurvey $userSurvey)
  44.     {
  45.         $bexio = new Contact($this->client);
  46.         try {
  47.             $contact $bexio->getContact($userSurvey->getUser()->getBexioContactId());
  48.         } catch (Throwable $exception) {
  49.             return null;
  50.         }
  51.         return $contact;
  52.     }
  53.     public function createContact(UserSurvey $userSurvey)
  54.     {
  55.         if ($this->envVerification) {
  56.             $bexio = new Contact($this->client);
  57.             $request_body $this->prepareContactData($userSurvey);
  58.             $contact $bexio->createContact($request_body);
  59.             $userSurvey->getUser()->setBexioContactId($contact->id);
  60.             $this->em->persist($userSurvey);
  61.             $this->em->flush();
  62.             return $contact;
  63.         }
  64.         return null;
  65.     }
  66.     private function prepareContactData(UserSurvey $userSurvey)
  67.     {
  68.         $user $userSurvey->getUser();
  69.         $userFile $userSurvey->getUserFile();
  70.         $address '';
  71.         $phone '';
  72.         $country 8;
  73.         if ($userFile) {
  74.             if ('France' != $userFile->getResidence()) {
  75.                 if ('Suisse' == $userFile->getResidence()) {
  76.                     $country 1;
  77.                 }
  78.             }
  79.             $owner $userSurvey->getUserFile()->getOwner();
  80.             if ($owner) {
  81.                 $address $owner->getAddress();
  82.                 $phone $owner->getPhoneNumber();
  83.             }
  84.         }
  85.         $request_body = [
  86.             'contact_type_id' => 2,
  87.             'name_1' => $user->getLastname(),
  88.             'name_2' => $user->getName(),
  89.             'address' => $address,
  90.             'country_id' => $country,
  91.             'mail' => $user->getEmail(),
  92.             'phone_fixed' => $phone,
  93.             'user_id' => 1,
  94.             'owner_id' => 1,
  95.         ];
  96.         return $request_body;
  97.     }
  98.     public function editContact(UserSurvey $userSurvey)
  99.     {
  100.         $bexio = new Contact($this->client);
  101.         $request_body $this->prepareContactData($userSurvey);
  102.         if ($this->envVerification) {
  103.             return $bexio->editContact($userSurvey->getUser()->getBexioContactId(), $request_body);
  104.         }
  105.         return null;
  106.     }
  107.     public function getProduct($id)
  108.     {
  109.         $item = new Item($this->client);
  110.         return $item->getItem($id);
  111.     }
  112.     public function getProducts(array $params = [])
  113.     {
  114.         $item = new Item($this->client);
  115.         return $item->getItems($params);
  116.     }
  117.     public function createInvoice(UserSurvey $userSurvey)
  118.     {
  119.         $bexioInvoice = new Invoice($this->client);
  120.         $order $userSurvey->getOrder();
  121.         $items = [];
  122.         $account 149;
  123.         if (!is_null($userSurvey->getSurvey()->getBexioAccountId())) {
  124.             $account $userSurvey->getSurvey()->getBexioAccountId();
  125.         }
  126.         foreach ($userSurvey->getUserSurveyBexioArticles() as $userSurveyBexioArticle) {
  127.             $items[] = [
  128.                 'type' => 'KbPositionArticle',
  129.                 'amount' => $userSurveyBexioArticle->getQuantity(),
  130.                 'account_id' => $account,
  131.                 'tax_id' => 3,
  132.                 'unit_price' => $userSurveyBexioArticle->getPrice(),
  133.                 'article_id' => $userSurveyBexioArticle->getBexioArticleId(),
  134.             ];
  135.         }
  136.         foreach ($order->getOrderSupplements() as $supplement) {
  137.             $items[] = [
  138.                 'type' => 'KbPositionArticle',
  139.                 'amount' => 1,
  140.                 'account_id' => $account,
  141.                 'tax_id' => 3,
  142.                 'unit_price' => $supplement->calculateAmount($order->getAmountNoDiscount()),
  143.                 'article_id' => $supplement->getSupplementType()->getBexioArticleId(),
  144.             ];
  145.         }
  146.         $discounts $order->getDiscounts();
  147.         foreach ($discounts as $discount) {
  148.             if ('AFFILIATION' == $discount->getType() and $discount->getUser() === $userSurvey->getUser()) {
  149.                 $discountValue $discount->getDiscount() * $order->getAffiliationCount();
  150.             } else {
  151.                 $discountValue $discount->getDiscount();
  152.             }
  153.             $invoiceDiscount = [
  154.                 'type' => 'KbPositionDiscount',
  155.                 'text' => 'Reduction (' $discount->getCode() . ')',
  156.                 'is_percentual' => '%' == $discount->getDiscountType(),
  157.                 'value' => $discountValue,
  158.             ];
  159.             if ($discount->getDiscount() > 0) {
  160.                 $items[] = $invoiceDiscount;
  161.             }
  162.         }
  163.         $country 'SUISSE';
  164.         if ('IF' == $userSurvey->getSurvey()->getSurveyCategory()->getCode()) {
  165.             $country 'FRANCE';
  166.         }
  167.         $userSurveyName $userSurvey->conditionalSurveyName();
  168.         if (strlen($userSurveyName) > 39) {
  169.             $userSurveyName $userSurvey->getSurvey()->getShortName();
  170.         }
  171.         $title $country ' - ' $userSurveyName ' - annĂ©e fiscale ' strval(intval(date('Y')) - 1) . ' - ' $userSurvey->getId();
  172.         if ('AS' == $userSurvey->getSurvey()->getSurveyCategory()->getCode()) {
  173.             $title 'CMU(CNTFS) - ' $userSurveyName ' - ' $userSurvey->getId();
  174.         }
  175.         $invoice = [
  176.             'title' => $title,
  177.             'contact_id' => $userSurvey->getUser()->getBexioContactId(),
  178.             'user_id' => 1,
  179.             'logopaper_id' => 1,
  180.             'language_id' => 2,
  181.             'bank_account_id' => 1,
  182.             'currency_id' => 1,
  183.             'payment_type_id' => 4,
  184.             'footer' => 'Nous sommes Ă  votre disposition pour toutes questions.
  185.                 Meilleures salutations',
  186.             'mwst_type' => 2,
  187.             'mwst_is_net' => true,
  188.             'show_position_taxes' => false,
  189.             'template_slug' => '669e591726dcf0fcd10e36f6',
  190.             'positions' => $items,
  191.         ];
  192.         if ($this->envVerification) {
  193.             return $bexioInvoice->createInvoice($invoice);
  194.         }
  195.         return null;
  196.     }
  197.     public function issueInvoice($id)
  198.     {
  199.         if ($this->envVerification) {
  200.             $bexioInvoice = new Invoice($this->client);
  201.             return $bexioInvoice->issueInvoice($id);
  202.         }
  203.         return null;
  204.     }
  205.     public function createAdminInvoicePayment($id$params)
  206.     {
  207.         if ($this->envVerification) {
  208.             $params['bank_account_id'] = 5;
  209.             $bexioInvoice = new Invoice($this->client);
  210.             return $bexioInvoice->createInvoicePayment($id$params);
  211.         }
  212.         return null;
  213.     }
  214.     public function createInvoicePayment($id$params)
  215.     {
  216.         if ($this->envVerification) {
  217.             $params['bank_account_id'] = 4;
  218.             $bexioInvoice = new Invoice($this->client);
  219.             return $bexioInvoice->createInvoicePayment($id$params);
  220.         }
  221.         return null;
  222.     }
  223.     public function getPdf($id)
  224.     {
  225.         $bexioInvoice = new Invoice($this->client);
  226.         return $bexioInvoice->getPdf($id);
  227.     }
  228.     public function markInvoiceAsSent($id)
  229.     {
  230.         if ($this->envVerification) {
  231.             $bexioInvoice = new Invoice($this->client);
  232.             return $bexioInvoice->markInvoiceAsSent($id);
  233.         }
  234.         return null;
  235.     }
  236.     public function sendInvoice($id$params)
  237.     {
  238.         if ($this->envVerification) {
  239.             $bexioInvoice = new Invoice($this->client);
  240.             return $bexioInvoice->sendInvoice($id$params);
  241.         }
  242.         return null;
  243.     }
  244.     public function generateProducts($force false)
  245.     {
  246.         $surveys $this->em->getRepository(Survey::class)->findAll();
  247.         foreach ($surveys->getSurveyProducts() as $surveyProduct) {
  248.             foreach ($surveyProduct->getSurveyRates() as $surveyRate) {
  249.                 if (is_null($surveyRate->getBexioArticleId()) || $force) {
  250.                     $bexioId $this->createBexioProduct($surveyRate);
  251.                     $surveyRate->setBexioArticleId($bexioId);
  252.                     $this->em->persist($surveyRate);
  253.                 }
  254.             }
  255.         }
  256.         $this->em->flush();
  257.     }
  258.     public function createBexioProduct(SurveyRate $surveyRate$newPrice null)
  259.     {
  260.         $template = [
  261.             'user_id' => 1,
  262.             'article_type_id' => 2,
  263.             'contact_id' => null,
  264.             'deliverer_code' => null,
  265.             'deliverer_name' => null,
  266.             'deliverer_description' => null,
  267.             'intern_description' => '
  268.                 <ul>
  269.                     <li>%description%</li>
  270.                 </ul>',
  271.             'sale_price' => null,
  272.             'purchase_total' => null,
  273.             'sale_total' => null,
  274.             'currency_id' => 1,
  275.             'tax_income_id' => 3,
  276.             'tax_expense_id' => 10,
  277.             'html_text' => null,
  278.             'article_group_id' => null,
  279.         ];
  280.         $base $template;
  281.         $prefix 'W.';
  282.         if (true === $surveyRate->getSurveyProduct()->isIsMultiple()) {
  283.             $prefix .= 'S.';
  284.         }
  285.         $suffix '';
  286.         if ('SANS_ENFANTS_-_CELIBATAIRE' == $surveyRate->getSurveyProduct()->getCode()) {
  287.             $suffix '.1.0';
  288.         } elseif ('AVEC_ENFANT' == $surveyRate->getSurveyProduct()->getCode() || 'AVEC_ENFANT_CELIBATAIRE' == $surveyRate->getSurveyProduct()->getCode()) {
  289.             $suffix '.1.1';
  290.         } elseif ('MARIE' == $surveyRate->getSurveyProduct()->getCode()) {
  291.             $suffix '.2.8';
  292.         }
  293.         $base['intern_code'] = $prefix $surveyRate->getSurveyProduct()->getSurvey()->getCode() . $suffix '.' mt_rand(11119999);
  294.         $name $surveyRate->getSurveyProduct()->getSurvey()->getName();
  295.         $description str_replace('%description%'$surveyRate->getSurveyProduct()->getName(), $template['intern_description']);
  296.         if ('CMU' == $surveyRate->getSurveyProduct()->getSurvey()->getCode()) {
  297.             $name 'Forfait rectification CNTFS';
  298.             $description str_replace('%description%''Rectification de cotisations CNTFS'$template['intern_description']);
  299.         }
  300.         $base['intern_name'] = $name;
  301.         $base['intern_description'] = $description;
  302.         if (!is_null($newPrice)) {
  303.             $base['sale_price'] = $newPrice;
  304.         } else {
  305.             $base['sale_price'] = $surveyRate->getPrice();
  306.         }
  307.         if ($this->envVerification) {
  308.             $item = new Item($this->client);
  309.             $bexioArticle $item->createItem($base);
  310.             return $bexioArticle->id;
  311.         }
  312.         return null;
  313.     }
  314.     public function cancelInvoice($id)
  315.     {
  316.         if ($this->envVerification) {
  317.             $bexioInvoice = new Invoice($this->client);
  318.             try {
  319.                 return $bexioInvoice->cancelInvoice($id);
  320.             } catch (Throwable $exception) {
  321.                 return null;
  322.             }
  323.         }
  324.         return null;
  325.     }
  326.     public function createBexioSupplement(SupplementType $supplementType)
  327.     {
  328.         $template = [
  329.             'user_id' => 1,
  330.             'article_type_id' => 2,
  331.             'contact_id' => null,
  332.             'deliverer_code' => null,
  333.             'deliverer_name' => null,
  334.             'deliverer_description' => null,
  335.             'intern_description' => '
  336.                 <ul>
  337.                     <li>%description%</li>
  338.                 </ul>',
  339.             'sale_price' => null,
  340.             'purchase_total' => null,
  341.             'sale_total' => null,
  342.             'currency_id' => 1,
  343.             'tax_income_id' => 3,
  344.             'tax_expense_id' => 10,
  345.             'html_text' => null,
  346.             'article_group_id' => null,
  347.         ];
  348.         $base $template;
  349.         $base['intern_code'] = 'W.SUPP_' mt_rand(11119999);
  350.         $base['intern_name'] = $supplementType->__toString();
  351.         $base['intern_description'] = str_replace('%description%'$supplementType->__toString(), $template['intern_description']);
  352.         $base['sale_price'] = 0;
  353.         if ($this->envVerification) {
  354.             $item = new Item($this->client);
  355.             $bexioArticle $item->createItem($base);
  356.             return $bexioArticle->id;
  357.         }
  358.         return null;
  359.     }
  360.     public function isPaid($id)
  361.     {
  362.         if (!$this->envVerification) {
  363.             return false;
  364.         }
  365.         $payments $this->getInvoicePayments($id);
  366.         $invoice $this->getInvoice($id);
  367.         $totalPaid 0;
  368.         $invoiceTotal 0;
  369.         if (is_object($invoice)) {
  370.             if (property_exists($invoice'total')) {
  371.                 $invoiceTotal $invoice->total;
  372.             }
  373.         }
  374.         if (is_array($payments)) {
  375.             foreach ($payments as $payment) {
  376.                 if (property_exists($payment'value')) {
  377.                     $totalPaid += $payment->value;
  378.                 }
  379.             }
  380.         }
  381.         if ($totalPaid >= $invoiceTotal) {
  382.             return true;
  383.         }
  384.         return false;
  385.     }
  386.     public function getInvoicePayments($id)
  387.     {
  388.         $bexioInvoice = new Invoice($this->client);
  389.         return $bexioInvoice->getInvoicePayments($id);
  390.     }
  391.     public function getInvoice($id)
  392.     {
  393.         $bexioInvoice = new Invoice($this->client);
  394.         return $bexioInvoice->getInvoice($id);
  395.     }
  396. }