-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path__manifest__.py
53 lines (50 loc) · 1.75 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
# Part of rental-vertical See LICENSE file for full copyright and licensing details.
{
"name": "Rental Base",
"version": "12.0.1.0.2",
"category": "Rental",
"summary": "Manage Rental of Products",
"usage": """
Create a rentable product and its rental service.
* Go to Rentals > Configuration > Settings.
* Please activate the checkbox for using 'Product Variants'.
* Go to Rentals > Products > Products.
* Create a new storable product.
* Activate the checkbox 'Can be Rented'.
* Go to page 'Sales & Purchase'.
* Create the rental service and configure its name and price.
Create a rental order:
* Go to Rentals > Customer > Rental Quotations.
* Create a new order and choose the type 'Rental Order'.
* Add the rental service as an order line.
* Set the quantity to rent out one or several storable rentable products.
* Choose start and end date.
* Confirm the order.
* Check out the two deliveries, one for outgoing and one for incoming delivery.
Please also see the usage section of sale_rental module.
""",
"author": "elego Software Solutions GmbH, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/vertical-rental",
"depends": [
"account",
"product_analytic",
"sale_order_type",
"sale_rental",
],
"data": [
"security/rental_security.xml",
"data/ir_sequence_data.xml",
"data/order_type_data.xml",
"data/product_uom_data.xml",
"wizard/update_sale_line_date_view.xml",
"views/res_config_settings_view.xml",
"views/stock_picking_views.xml",
"views/product_views.xml",
"views/menu_view.xml",
"views/sale_view.xml",
],
"demo": [],
"qweb": [],
"application": True,
"license": "AGPL-3",
}