Daily updates from Odoo
Tuesday, December 10, 2024
2 changes · 18.0
New functionality added to Odoo
Discuss now offers a dedicated video call button that starts a call with the camera enabled, reducing extra steps for users who want face-to-face conversations. Incoming call invitations also clearly indicate when a video call is being requested and let participants join with their camera on.
Original PR description
Add a new button to make a video call, which is equivalent to making a call and enabling camera. Invitation screen shows this is an incoming video call, people can join with camera on with the video camera button. Task-4354198  <img width="191" alt="Screenshot 2024-12-05 at 17 28 18" src="https://github.com/user-attachments/assets/54c91f47-9862-423d-a123-2eb67a58c84a"> <img width="717" alt="Screenshot 2024-12-05 at 17 28 42" src="https://github.com/user-attachments/assets/5d78b9ed-7b49-430d-8b6b-5cd0859ff4bd">
Spanish accounting users can now export the Libro Diario, a chronological journal of accounting entries, directly to Excel. This makes it easier for companies to review, share, and provide the legally expected transaction record in the required structure.
Original PR description
Objective --------- Libro Diario is just a big name for "Journal" in Spanish, but it's also a precise report that is expected to reflect a chronological report of all Accounting Entries in a…
Objective --------- Libro Diario is just a big name for "Journal" in Spanish, but it's also a precise report that is expected to reflect a chronological report of all Accounting Entries in a Database. It's expected to be published and available to show all the transactions recorded by a Company. It's basically an export of the General Ledger with all the accounting entries, not grouped by Account but by Accounting Entries, sorted by date, and to show a full sequence. The Libro Diario should posess the following columns and each row should contain an account move line: - "Entry": ascending numbering for each move, starting at 1. - "Line": numbering of the move line inside the move, starting at 1. - "Date": accounting date of the move; as mentionned, moves should be sorted by dates - "Account code" - "Account name" - "Description": label of the move line - "Document": account move name - "Debit" - "Credit" Solution --------- 1. Add a custom General Ledge Handler that adds the option to export the Libro Diarios 2. Since `_get_line` returns the AMLs grouped by accounts, it is easier to fetch the query that gets all the AMLs data (`_get_query_amls`) and then postprocess the amls data to generate the matrix of data passed to the XLSX builder. Doing so forces us to manually initialize the currency table. task-4294391