Daily updates from Odoo
Monday, August 10, 2015
5 changes
Enhancements to existing features
Settings across several Odoo apps were reorganized from simple on/off checkboxes into clearer radio-button choices. This makes configuration pages easier to understand and reduces ambiguity when selecting how features should behave.
Original PR description
TASK : https://www.odoo.com/web#id=19981&view_type=form&model=project.task&action=333&active_id=248 PAD : https://pad.odoo.com/p/r.gdCH1IyNwbsbaPIE
Check printing support was reorganized so template-specific modules can depend on a shared base without exposing unnecessary options to users. Users can now move check payments back from sent to posted when needed, while internal amount-in-words details are hidden from normal screens.
Original PR description
- Module account_check_writing becomes account_check_printing, a hidden dependency for modules which provide check templates - Payments by check have a button to go back from state 'sent' to 'posted' - Amount in words is hidden Goes with https://github.com/odoo/enterprise-9/pull/6 Note : - I didn't find how to hide a module. It would be nice to hide 'Check Printing Base' because it is useless by itself. - The tests pass locally, but I am not sure how to test the PR since it's split between community and enterprise. Maybe first merging this one since runbot builds the enterprise feature branches using community master ?
The warehouse return flow has been improved to make handling returned stock more reliable and easier for users. This helps businesses reduce mistakes during return operations and maintain more accurate inventory records.
Original PR description
Task : https://www.odoo.com/web#id=10435&view_type=form&model=project.task&menu_id=3942&action=327 Pad : https://pad.odoo.com/p/r.HuLGGOK8cxkKMBVj
Resolved issues and error corrections
This fixes an issue where certain configuration options were ignored if their internal name started with "group_". As a result, affected settings in areas such as CRM and general system configuration are now properly recognized and applied.
Original PR description
…nto account Bug introduced by https://github.com/odoo/odoo/commit/3d8f7c2f24e1894af973576b9cfd3ec632d675f7 ISSUE : https://www.odoo.com/web#id=647027&view_type=form&model=project.issue&action=963&active_id=681
Check printing is reorganized so shared functions are available behind the scenes while user-facing print options appear only when a specific check printing module is installed. Users also gain an easier way to return check payments from sent to posted, and amount-in-words is no longer shown where it should be hidden.
Original PR description
- Module account_check_writing becomes account_check_printing, a hidden dependency for modules which provide check templates - Payments by check have a button to go back from state 'sent' to 'posted' - Amount in words is hidden Goes with https://github.com/odoo/odoo/pull/7429