-
-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ifegmbh/dev/3549-17.0-imp_product_state
[IMP] product_state: fix issue with access rule and missing dependency
- Loading branch information
Showing
3 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,10 +31,10 @@ Product State | |
This module introduces the state field on product template and allows | ||
simple product life cycle: | ||
|
||
- draft: In Development | ||
- sellable: Normal | ||
- end: End of Lifecycle | ||
- obsolete: Obsolete | ||
- draft: In Development | ||
- sellable: Normal | ||
- end: End of Lifecycle | ||
- obsolete: Obsolete | ||
|
||
**Table of contents** | ||
|
||
|
@@ -76,15 +76,15 @@ Authors | |
Contributors | ||
------------ | ||
|
||
- Cedric Pigeon <[email protected]> | ||
- Alexandre Saunier <[email protected]> | ||
- Nikul Chaudhary <[email protected]> | ||
- Eduardo Magdalena <[email protected]> (C2i Change 2 improve | ||
http://www.c2i.es) | ||
- Andrii Skrypka <[email protected]> | ||
- Denis Roussel <[email protected]> | ||
- Riccardo Fresco <[email protected]> | ||
- Nils Coenen <[email protected]> | ||
- Cedric Pigeon <[email protected]> | ||
- Alexandre Saunier <[email protected]> | ||
- Nikul Chaudhary <[email protected]> | ||
- Eduardo Magdalena <[email protected]> (C2i Change 2 improve | ||
http://www.c2i.es) | ||
- Andrii Skrypka <[email protected]> | ||
- Denis Roussel <[email protected]> | ||
- Riccardo Fresco <[email protected]> | ||
- Nils Coenen <[email protected]> | ||
|
||
Maintainers | ||
----------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" | ||
"access_product_state_sale_manager","product.state","model_product_state","sales_team.group_sale_manager",1,1,1,1 | ||
"access_product_state_stock_manager","product.state","model_product_state","stock.group_stock_manager",1,1,1,1 | ||
"access_product_state_public","product.state.public","model_product_state",,1,0,0,0 | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_product_state_sale_manager,product.state,model_product_state,sales_team.group_sale_manager,1,1,1,1 | ||
access_product_state_stock_manager,product.state,model_product_state,stock.group_stock_manager,1,1,1,1 | ||
access_product_state_public,product.state.public,model_product_state,base.group_user,1,0,0,0 |