|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
-
-
-
- namespace common\helpers;
-
- use linslin\yii2\curl;
-
- class Tiller
- {
- var $curl;
- var $producer_tiller;
- var $provider_token;
- var $restaurant_token;
-
- var $url_api = 'https://app.tillersystems.com/api/';
-
- public function __construct()
- {
- $this->curl = new curl\Curl();
- $this->producer_tiller = Producer::getConfig('tiller');
- $this->provider_token = Producer::getConfig('tiller_provider_token');
- $this->restaurant_token = Producer::getConfig('tiller_restaurant_token');
- }
-
- public function getOrders($date)
- {
- if ($this->producer_tiller) {
- $orders = $this->curl->setGetParams([
- 'provider_token' => $this->provider_token,
- 'restaurant_token' => $this->restaurant_token,
- 'dateFrom' => date('Y-m-d H-i-s', strtotime($date)),
- 'dateTo' => date('Y-m-d H-i-s', strtotime($date) + 24 * 60 * 60 - 1),
- 'status' => 'CLOSED',
- ])->get($this->url_api . 'orders');
-
- return json_decode($orders);
- }
- }
-
- public function isSynchro($date)
- {
- if ($this->producer_tiller) {
- $ordersTiller = $this->getOrders($date);
- $ordersOpendistrib = Order::searchAll([
- 'distribution.date' => $date,
- 'order.tiller_synchronization' => 1
- ]);
-
- $ordersOpendistribSynchro = [];
-
- if ($ordersOpendistrib) {
- foreach ($ordersOpendistrib as $orderOpendistrib) {
- $ordersOpendistribSynchro[$orderOpendistrib->id] = false;
- if(isset($ordersTiller->orders)) {
- foreach ($ordersTiller->orders as $orderTiller) {
- if ($orderOpendistrib->id == $orderTiller->externalId
- && (int) round($orderOpendistrib->getAmountWithTax(Order::AMOUNT_TOTAL) * 100) == (int) $orderTiller->currentBill) {
-
- $ordersOpendistribSynchro[$orderOpendistrib->id] = true;
- }
- }
- }
- }
- }
-
- foreach ($ordersOpendistribSynchro as $idOrder => $isSynchro) {
- if (!$isSynchro) {
- return false;
- }
- }
-
- return true;
- }
- }
-
- public function postOrder($params)
- {
- if ($this->producer_tiller) {
- return $this->curl->setPostParams(array_merge([
- 'provider_token' => $this->provider_token,
- 'restaurant_token' => $this->restaurant_token,
- ], $params))
- ->post($this->url_api . 'orders');
- }
- }
- }
|