mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 05:43:37 +03:00
codestyle
This commit is contained in:
parent
ee53766913
commit
15e99df509
2 changed files with 8 additions and 4 deletions
|
@ -20,7 +20,10 @@ class ModelExtensionRetailcrmInventories extends Model {
|
|||
$offers = [];
|
||||
|
||||
foreach ($products as $product) {
|
||||
$offers[] = ['externalId' => $product['product_id'], 'stores' => [['code' => $store, 'available' => $product['quantity']]]];
|
||||
$offers[] = [
|
||||
'externalId' => $product['product_id'],
|
||||
'stores' => [['code' => $store, 'available' => $product['quantity']]]
|
||||
];
|
||||
}
|
||||
|
||||
$packs = array_chunk($offers, 50);
|
||||
|
@ -33,7 +36,7 @@ class ModelExtensionRetailcrmInventories extends Model {
|
|||
public function sendToCrm($pack) {
|
||||
$inventory_manager = $this->retailcrm->getInventoryManager();
|
||||
|
||||
return $inventory_manager->storeInventoriesUpload($pack);;
|
||||
return $inventory_manager->storeInventoriesUpload($pack);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
|
||||
namespace retailcrm\service;
|
||||
|
||||
class InventoryManager {
|
||||
private $api;
|
||||
class InventoryManager
|
||||
{
|
||||
private $api;
|
||||
|
||||
public function __construct(\RetailcrmProxy $api) {
|
||||
$this->api = $api;
|
||||
|
|
Loading…
Add table
Reference in a new issue