working upload

This commit is contained in:
ellynoize 2025-03-20 08:43:48 +03:00
parent 218c37c617
commit 6a78711e9d
3 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,39 @@
<?php
class ModelExtensionRetailcrmInventories extends Model {
public function uploadInventories()
{
$this->load->model('setting/setting');
$module_setting = $this->model_setting_setting->getSetting('module_retailcrm');
$uploadType = $module_setting['module_retailcrm_stock_upload'];
$store = $module_setting['module_retailcrm_store_select'];
if ($uploadType === '1') {
$this->toCrmUpload($store);
}
}
public function toCrmUpload($store) {
$products = $this->model_catalog_product->getProducts([]);
$offers = [];
foreach ($products as $product) {
$offers[] = ['externalId' => $product['product_id'], 'stores' => [['code' => $store, 'available' => $product['quantity']]]];
}
$packs = array_chunk($offers, 50);
foreach ($packs as $pack) {
$this->sendToCrm($pack);
}
}
public function sendToCrm($pack) {
$inventory_manager = $this->retailcrm->getInventoryManager();
return $inventory_manager->storeInventoriesUpload($pack);;
}
}

View file

@ -0,0 +1,15 @@
<?php
namespace retailcrm\service;
class InventoryManager {
private $api;
public function __construct(\RetailcrmProxy $api) {
$this->api = $api;
}
public function storeInventoriesUpload($pack) {
return $this->api->storeInventoriesUpload($pack);
}
}

View file

@ -9,6 +9,7 @@ use retailcrm\service\OrderManager;
use retailcrm\factory\OrderConverterFactory;
use retailcrm\factory\CustomerConverterFactory;
use retailcrm\service\SettingsManager;
use retailcrm\service\InventoryManager;
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
@ -54,6 +55,10 @@ class Retailcrm {
return new CorporateCustomer($this->getApiClient(), new CustomerRepository($this->registry));
}
public function getInventoryManager() {
return new InventoryManager($this->getApiClient());
}
/**
* Get api client object
*