| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Discuss (mail)
• Employee Contracts (hr_contract) • Time Off (hr_holidays) • Employees (hr) • Calendar (calendar) • Invoicing (account) |
| Community Apps Dependencies | Show |
| Lines of code | 3197 |
| Technical Name |
hr_payroll_multi_currency |
| License | OPL-1 |
| Website | https://www.beyond-sys.co |
| Versions | 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
Discuss (mail)
• Employee Contracts (hr_contract) • Time Off (hr_holidays) • Employees (hr) • Calendar (calendar) • Invoicing (account) |
| Community Apps Dependencies | Show |
| Lines of code | 3197 |
| Technical Name |
hr_payroll_multi_currency |
| License | OPL-1 |
| Website | https://www.beyond-sys.co |
| Versions | 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 |
Add multi-currency handling to payroll and accounting
Manage payroll calculations, payslip details, and accounting entries with currency context throughout the payroll workflow.
Currency on contracts
Define salary currency where payroll starts.
Detailed payslip lines
Review computed salary rules with currency values.
Accounting entries
Generate journal entries that preserve currency context.
How it works
Setup
- Set the currency on the employee contract.
- Create the payslip for the target period.
- Compute salary lines.
- Review totals by salary rule category.
Result
- Generate the related accounting entry.
- Check debit and credit lines.
- Review the printable payslip.
- Keep payroll output easy to audit.
Main features
Contract currency setup
Use the employee contract as the source for payroll currency.
Currency-aware salary rules
Show currency on payroll computation details.
Refund support
Handle refund payslips with consistent accounting output.
Printable payslip output
Keep employee-facing payslip amounts clear and readable.
Screenshots
Clear Odoo screens showing the workflow in practice.
Contract currency
Define employee wage currency on the contract.
Payslip creation
Create payslips with currency context.
Computation details
Review detailed payroll lines with currency values.
Printable payslip
Generate clear payslip documents for employees.
Support
By BeyondSys Consulting - www.beyond-sys.co - info@beyond-sys.co
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module
Module not working.
I have requested help on your module failing to convert salary. Below is what Manus AI reports as issue in module logic. hr_payroll_multi_currency-18.0.1.0.0.zip
Archive · 2.08 MB
Lite
I've received the module source code. I will now extract it and analyze the code to understand how it handles currency conversion during journal entry creation. This will help me identify why the conversion from Malawi Kwacha to Australian Dollars is failing in your setup.
Lite
13:01
Based on the analysis of the hr_payroll_multi_currency module's source code and the provided screenshot, the issue of Malawi Kwacha (MWK) not converting to Australian Dollars (AUD) in your Odoo 18 payroll journal entries likely stems from one of the following reasons:
1. Incorrect Company Currency Configuration:
The module's core logic for currency conversion (lines 54-58 in hr_payroll_multi_currency/models/hr_payroll_account.py) explicitly checks if the payslip's currency (slip_currency) is different from the company's main currency (company_currency). If your Odoo instance's company currency is not set to Australian Dollars (AUD) but is instead set to Malawi Kwacha (MWK), or if it's not properly configured, this condition (slip_currency != company_currency) would evaluate to False. Consequently, the _convert function would not be called, and the amounts would be recorded in the journal entry without any conversion, effectively treating MWK amounts as AUD.
2. Missing or Incorrect Exchange Rates:
Even if the company currency is correctly set to AUD, the conversion will fail if Odoo does not have valid and up-to-date exchange rates between MWK and AUD for the accounting date of the payslip. The slip_currency._convert() method relies on these exchange rates to perform the conversion. If no rates are found, Odoo might default to a 1:1 conversion or use an outdated rate, leading to incorrect values in the balance sheet.
3. Employee Contract Currency Not Set to MWK:
The module's description emphasizes the importance of setting the employee contract currency. If the employee's contract currency is not explicitly set to MWK, the slip_currency might default to the company currency (AUD), again bypassing the conversion logic.
4. Interference from Other Modules or Customizations:
It is possible that another installed module or a custom modification is interfering with the hr_payroll_multi_currency module's intended behavior, particularly around how currencies are handled in journal entries or how the company_currency is determined.
Recommendations:
To resolve this issue, please perform the following checks and configurations in your Odoo 18 instance:
By ensuring these configurations are correct, the hr_payroll_multi_currency module should be able to correctly convert the Malawi Kwacha amounts to Australian Dollars in your payroll journal entries, leading to accurate balance sheet reporting.
Hi,
I logged a ticked that your app is not entering correct value in the journal. It is ignoring effective currency rate. You have not responded to the request.