-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path__manifest__.py
58 lines (50 loc) · 1.99 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Part of rental-vertical See LICENSE file for full copyright and licensing details.
{
"name": "Rental Pricelist (Interval)",
"summary": """
Enables the user to define different rental prices with time uom ("Month", "Day" and "Hour").
""",
"usage": """
To use this module, you need to:
#. Create a new stockable product and define it as rental service or
go to an existing one.
#. On 'Rental Price' tab check the 'Rented in interval' option.
#. Set the interval base price and define the max amount of days the product
can be rented out.
#. Push the 'Reset Interval Prices' button to compute interval ranges and prices.
from base price and interval ranges configured in company settings.
#. Adapt interval min. quantities or prices for the selected product if desired.
""",
"contributors": """
* Ben Brich <b.brich@humanilog.org> (www.humanilog.org)
* Yu Weng <yweng@elegosoft.com> (www.elegosoft.com)
""",
"configuration": """
To configure this module, you need to:
#. Go to company settings and define the default interval ranges on
'Rental Interval Prices' tab. These ranges will be applied for computation of price intervals
for rental service products when interval pricing is activated in stockable product.
#. If desired go to 'RS (Prefix and Suffix)' tab an define how rental interval service product
names and reference numbers are created.
""",
"version": "12.0.1.0.4",
"category": "Rental",
"author": "Odoo Community Association (OCA), Elego Software Solutions GmbH",
"website": "https://github.com/OCA/vertical-rental",
"depends": [
"rental_pricelist",
],
"data": [
"security/ir.model.access.csv",
"data/product_uom_data.xml",
"data/product_pricelist_data.xml",
"views/sale_view.xml",
"views/product_view.xml",
"views/res_company_view.xml",
],
"demo": [],
"qweb": [],
"post_init_hook": "set_product_def_interval_pricelist_id",
"application": False,
"license": "AGPL-3",
}