mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 18:32:08 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<!-- The following cron is trigger-only. When the user triggers it, the cron processes some
|
||||
products to add an image from an external provider and schedules itself until all products
|
||||
are processed. The cron has then no reason to be triggered anymore. Also, its trigger
|
||||
should always be unique to be able to optimize the number of requests in accordance with
|
||||
the rate limit that some image providers may apply. -->
|
||||
<record id="ir_cron_fetch_image" model="ir.cron">
|
||||
<field name="name">Product Images: Get product images from Google</field>
|
||||
<field name="interval_number">9999</field>
|
||||
<field name="interval_type">months</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="doall">True</field>
|
||||
<field name="model_id" ref="model_product_fetch_image_wizard"/>
|
||||
<field name="code">model._cron_fetch_image()</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue