Daily updates from Odoo
Wednesday, September 10, 2025
2 changes
Enhancements to existing features
The Philippine reporting module has been updated so SAWT/QAP and SLSP reports better match government-required formats. Users can now generate DAT files directly instead of exporting spreadsheets and converting them separately, reducing manual work and supporting more document types.
Original PR description
Updates the reporting module in general to better align with the government guidelines. - Update the SAWT/QAP and SLSP reports, in order to make them match better the expected outputs that will be sent to the government. - Remove the xlsx export we had until now, and replace it with a direct generation of DAT files. Users had to use a tool to transform these xlsx into the final DAT, so they can now skip this step. This process adds support for a larger variety of supporting documents. task-4689269
Indian GST returns now use Odoo’s shared tax return framework, making GSTR-1 and GSTR-2B workflows more consistent and easier to maintain. Businesses also get a new purchase report, direct JSON export, guided submission steps, and integrated vendor bill fetching within the GSTR2B process.
Original PR description
This commit refactors the Indian GST return handling to adopt the new generic `account.return`, `account.return.check`,and `account.return.type` models. The old model `l10n_in.gst.return.period` is…
This commit refactors the Indian GST return handling to adopt the new generic `account.return`, `account.return.check`,and `account.return.type` models. The old model `l10n_in.gst.return.period` is fully replaced. Previously, GSTR-1, GSTR-2B, and bill fetching through IRN were implemented on the `l10n_in.gst.return.period` model. Key changes:- New - Introduces Purchase Report Return Types - Introduces GSTR1 and GSTR2B return types. - Bypasses the generic annual corporate return type Model Migration Migrates fields from l10n_in.gst.return.period to `account.return` - Fields with the same name and purpose (e.g., company_id, tax_unit_id, etc.) are directly adopted. - Certain fields required explicit renaming for consistency: 1. start_date → date_from 2. end_date → date_to - Other GSTR-specific fields are aligned or removed depending on their relevance - GSTR3B fields and their computes are completely removed - Adopts new M2M fields with custom relation names. Workflow Enhancements - Introduces custom states for GSTR1 and GSTR2B to support their workflows. - Adds support in generic `account.return` to handle next_state transitions. - Creates the checks for GSTR1 validations. GSTR1 Flow - JSON spreadsheet export can now be directly downloaded (no dependency on Documents app). - OTP validation no longer auto-triggers the next GST action — the user must explicitly push data. - Adds an intermediate wizard to guide the user before submission. GSTR2B Flow - Implements Purchase Report using new l10n_in_gstr_section. - Vendor bill fetching is now integrated with GSTR2B workflow. - Reconciliation/matching logic remains unchanged. UI changes - Hides tax return creation if e-filing is disabled from reports and redirects. user to enable filling from the dashboard. - Aligns tax return views with the generic framework. Notes - Core JSON creation and reconciliation logic from previous implementation is preserved. - This aligns Indian GST returns with the generic tax return framework for better maintainability. Community PR - https://github.com/odoo/odoo/pull/223358 Upgrade PR - https://github.com/odoo/upgrade/pull/8281 task-4750259