Tuesday, September 1, 2020
9 changes
Miscellaneous changes
Currently when user add file binary using studio it show traceback. In this commit make proper code to pass the value for field_description. TaskID: 2327757 Forward-Port-Of: odoo/enterprise#12839
Original PR description
Currently when user add file binary using studio it show traceback. In this commit make proper code to pass the value for field_description. TaskID: 2327757 Forward-Port-Of: odoo/enterprise#12839
Due to changes in odoo/odoo#56806 the override must be adapted too Forward-Port-Of: odoo/enterprise#12795
Original PR description
Due to changes in odoo/odoo#56806 the override must be adapted too Forward-Port-Of: odoo/enterprise#12795
Without demo data Forward-Port-Of: odoo/enterprise#12821
Original PR description
Without demo data Forward-Port-Of: odoo/enterprise#12821
Before this commit, while selecting the group by on project and applying filter on the last year showing the traceback on timesheet. In this commit, we have made the changes as expected. taskid: 2326440 PR: 12740 Forward-Port-Of: odoo/enterprise#12740
Original PR description
Before this commit, while selecting the group by on project and applying filter on the last year showing the traceback on timesheet. In this commit, we have made the changes as expected. taskid: 2326440 PR: 12740 Forward-Port-Of: odoo/enterprise#12740
Currently, the administration access rights is broken in checkbox due to wrong cateogry passed on group "Allocated time percentage Gantt" So in this commit, Move the allocated time percentage Gantt group to technical group instead of admin groups so it should visible in the technical group in user's form view. LINKS PR: #12646 Task-Id: 2318509 Forward-Port-Of: odoo/enterprise#12646
Original PR description
Currently, the administration access rights is broken in checkbox due to wrong cateogry passed on group "Allocated time percentage Gantt" So in this commit, Move the allocated time percentage Gantt group to technical group instead of admin groups so it should visible in the technical group in user's form view. LINKS PR: #12646 Task-Id: 2318509 Forward-Port-Of: odoo/enterprise#12646
Improvements ============ * Use Gsheets colors * Number representation performance * Tokenizer performance Fixes ===== *Correctly update cross sheet range references Forward-Port-Of: odoo/enterprise#12819
Original PR description
Improvements ============ * Use Gsheets colors * Number representation performance * Tokenizer performance Fixes ===== *Correctly update cross sheet range references Forward-Port-Of: odoo/enterprise#12819
Before this commit, There was trackback on deleting asset which is in `'open', 'paused', 'close'` state due to wrongly accessing state field. ``` raise UserError(_('You cannot delete a document that is in %s state.') % self._fields['state']._description_selection(self.env)).get(asset.state) AttributeError: 'UserError' object has no attribute 'get' ``` Now we are correctly accessing state field. Follow up on ef1286f6f96c998db5697806e691193b5eb1c9cf Forward-Port-Of: odoo/enterprise#12
Original PR description
Before this commit, There was trackback on deleting asset which is in `'open', 'paused', 'close'` state due to wrongly accessing state field.
```
raise UserError(_('You cannot delete a document that is in %s state.') % self._fields['state']._description_selection(self.env)).get(asset.state)
AttributeError: 'UserError' object has no attribute 'get'
```
Now we are correctly accessing state field.
Follow up on ef1286f6f96c998db5697806e691193b5eb1c9cf
Forward-Port-Of: odoo/enterprise#12649
Forward-Port-Of: odoo/enterprise#12616Various fixes to make runbot builds green Forward-Port-Of: odoo/enterprise#12806
Original PR description
Various fixes to make runbot builds green Forward-Port-Of: odoo/enterprise#12806
Issue - Install "Accounting" Module - Create an invoice for current quarter period and 2 other invoices for the 2 previous quarter - Go to Accounting -> Reporting -> Tax Report - Select current quarter and compare with 2 previous quarter Wrong net and taxes value. Cause 1. Computing account move lines with wrong options. 2. Missing 'strict_range' value option for each compared period. Therefore, when creating domain query, if mode == 'range' and there is no
Original PR description
Issue
- Install "Accounting" Module
- Create an invoice for current quarter period and
2 other invoices for the 2 previous quarter
- Go to Accounting -> Reporting -> Tax Report
- Select current quarter and compare with 2 previous quarter
Wrong net and taxes value.
Cause
1. Computing account move lines with wrong options.
2. Missing 'strict_range' value option for each compared period.
Therefore, when creating domain query, if mode == 'range' and
there is not 'strict_range' value, it wil alter domain to include
('account_id.user_type_id.include_initial_balance', '=', True).
Solution
1. Compute amls with period options instead of general options.
2. Add "strict_range" value for each period.
opw-2317106
Forward-Port-Of: odoo/enterprise#12742
Forward-Port-Of: odoo/enterprise#12519