Daily updates from Odoo
Saturday, January 20, 2024
3 changes · master
Miscellaneous changes
If the Indian localization is installed, check if the taxes found in the OCR can be found in the children of group taxes Task id: [3612606](https://www.odoo.com/web#id=3612606&cids=1&menu_id=4720&action=4043&model=project.task&view_type=form) Forward-Port-Of: odoo/enterprise#54783 Forward-Port-Of: odoo/enterprise#53662
Original PR description
If the Indian localization is installed, check if the taxes found in the OCR can be found in the children of group taxes Task id: [3612606](https://www.odoo.com/web#id=3612606&cids=1&menu_id=4720&action=4043&model=project.task&view_type=form) Forward-Port-Of: odoo/enterprise#54783 Forward-Port-Of: odoo/enterprise#53662
[ADD] l10n_ec_reports_ats: Ecuadorian ATS Report (SRI) The Simplified Transactional Annex (Anexo Transaccional Simplificado - ATS) Developed in collaboration with the Trescloud team [General description] - Report generated in xml to be uploaded to the DIMM software of the SRI (Servicio de Rentas Internas) in Ecuador. - Added button action to generate the ATS report in XML, in Accounting > Reports > Tax Report. - The ATS is generated per month. - Non-blocking error notifications in t
Original PR description
[ADD] l10n_ec_reports_ats: Ecuadorian ATS Report (SRI) The Simplified Transactional Annex (Anexo Transaccional Simplificado - ATS) Developed in collaboration with the Trescloud team [General…
[ADD] l10n_ec_reports_ats: Ecuadorian ATS Report (SRI) The Simplified Transactional Annex (Anexo Transaccional Simplificado - ATS) Developed in collaboration with the Trescloud team [General description] - Report generated in xml to be uploaded to the DIMM software of the SRI (Servicio de Rentas Internas) in Ecuador. - Added button action to generate the ATS report in XML, in Accounting > Reports > Tax Report. - The ATS is generated per month. - Non-blocking error notifications in the ATS XML generation process [Purchase Document Reports] - Local and foreign purchase documents grouped by partner and tax support. - All pre-printed and electronic purchasing documents are included. - Total amounts of profit and VAT in withholding taxes for the purchase documents to be declared in the selected period. - Report pre-printed and electronic withholdings for each purchase document, if it was generated for that purchase document and the withhold date is in the search period. [Report sales documents] - Pre-printed and electronic sales documents grouped by partner. [Report void documents] - Pre-printed and electronic documents canceled in the selected period. - Canceled sales, purchase and withholding documents are included. Task: 3303501 _____________ [FIX] l10n_ec_reports: Fix manifest icons options - Add 'countries' option in the module manifest - Delete static files. This way of displaying icons is deprecated. _____________ [IMP] l10n_ec_edi: Cases to show and edit EC authorization number - Hide EC authorization number for not EC documents, documents without a document type and if the document is not a withhold - Allow editing of the authorization number for EC pre-printed and manual documents - Do not allow the editing of electronic documents Forward-Port-Of: odoo/enterprise#54762
### Steps to reproduce * attempt to import an asset (CSV or XLSX file) with a value for a `journal_id` related field. That value will not be automatically matched with an Odoo Field. If you try to set it by manually, that field won't appear in the list of available fields. ### Cause In 16, even though a field was read-only, we would still allow it to be imported [depending on the 'states' field](https://github.com/odoo/odoo/blob/78bb35ae0f33777af003db310a59d807182008d5/addons/base_i
Original PR description
### Steps to reproduce * attempt to import an asset (CSV or XLSX file) with a value for a `journal_id` related field. That value will not be automatically matched with an Odoo Field. If you try to set it by manually, that field won't appear in the list of available fields. ### Cause In 16, even though a field was read-only, we would still allow it to be imported [depending on the 'states' field](https://github.com/odoo/odoo/blob/78bb35ae0f33777af003db310a59d807182008d5/addons/base_import/models/base_import.py#L288-L294) attribute. But since that attribute has been removed, a read-only field cannot be set trough import. ### Fix This commit makes the assets' `journal_id` field not read-only. The usual behavior (read-only if not in draft) remains unchanged because the views were already adapted accordingly. opw-3635484 Forward-Port-Of: odoo/enterprise#52872