mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 05:43:37 +03:00
working upload
This commit is contained in:
parent
218c37c617
commit
6a78711e9d
3 changed files with 59 additions and 0 deletions
39
src/upload/admin/model/extension/retailcrm/inventories.php
Normal file
39
src/upload/admin/model/extension/retailcrm/inventories.php
Normal 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);;
|
||||
}
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue