Merge pull request #1 from ellynoize/add-inventory-cron

Add cron task for inventory upload
This commit is contained in:
ellynoize 2025-01-24 15:39:37 +03:00 committed by GitHub
commit 218c37c617
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 0 deletions

View file

@ -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
```

View file

@ -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
*

View file

@ -0,0 +1,3 @@
<?php
$cli_action = 'extension/module/retailcrm/inventories';
require_once('dispatch.php');