mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 13:53:37 +03:00
Merge pull request #1 from ellynoize/add-inventory-cron
Add cron task for inventory upload
This commit is contained in:
commit
218c37c617
3 changed files with 22 additions and 0 deletions
|
@ -72,3 +72,11 @@ Run this command (replace `/path/to/your/site` with the actual path to your site
|
|||
```
|
||||
|
||||
You should run this command only once.
|
||||
|
||||
#### Setting inventories export
|
||||
|
||||
Add to cron (replace `/path/to/your/site` with the actual path to your site):
|
||||
|
||||
```
|
||||
*/15 * * * * /usr/bin/php /path/to/your/site/system/library/retailcrm/cron/inventories.php >> /path/to/your/site/system/storage/logs/cronjob_inventories.log 2>&1
|
||||
```
|
|
@ -488,6 +488,17 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Inventories upload
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function inventories()
|
||||
{
|
||||
$this->load->model('extension/retailcrm/inventories');
|
||||
$this->model_extension_retailcrm_inventories->uploadInventories();
|
||||
}
|
||||
|
||||
/**
|
||||
* ICML generation
|
||||
*
|
||||
|
|
3
src/upload/system/library/retailcrm/cron/inventories.php
Normal file
3
src/upload/system/library/retailcrm/cron/inventories.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
$cli_action = 'extension/module/retailcrm/inventories';
|
||||
require_once('dispatch.php');
|
Loading…
Add table
Reference in a new issue