forked from OCA/vertical-rental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
56 lines (51 loc) · 1.88 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
# Part of rental-vertical See LICENSE file for full copyright and licensing details.
{
"name": "Rental Product Pack",
"version": "12.0.1.0.1",
"category": "Rental",
"summary": "Manage rentals with product packs",
"usage": """
Install the module.
No further configuration is needed.
Create at least one storable product that will be a component of a pack.
* Go to Rentals > Configuration > Settings.
* Please activate the checkbox for using 'Product Variants'.
* Go to Rentals > Products > Products.
* Create a new storable product.
Create a rentable pack product.
* Create a new storable product.
* Activate the checkbox 'Can be Rented' and 'Is Pack'.
* Go to page 'Pack'.
* Choose Pack Type (e.g. Non-detailled)
* Add the previously created storable products that are part of this pack.
* 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 of the rentable pack product as an order line.
* Set the quantity.
* Choose start and end date.
* Confirm the order.
* Check out the two deliveries, one for outgoing and one for incoming delivery.
* You can see all parts of the pack in both stock pickings.
Hint:
Refer to the usage information of the OCA module product_pack to learn how to
define product packs.
Please note, that this module does not include the behavior of the module sale_product_pack.
""",
"author": "elego Software Solutions GmbH, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/vertical-rental",
"depends": [
"rental_base",
"product_pack",
],
"data": [
"security/ir.model.access.csv",
"views/product_view.xml",
],
"demo": [],
"qweb": [],
"application": False,
"license": "AGPL-3",
}