Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD] account_tax_on_payment: add tax on payment #115325

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from

Conversation

jva-odoo
Copy link
Contributor

@jva-odoo jva-odoo commented Mar 15, 2023

In some country like India, advance payment need to pay taxes

payment of 100 with 5% (included tax)


      account         |   debit   |   credit  |
-----------------------------------------------
Outstanding Receipts  |    100.00 |           |
Debtors               |           |    100.00 |
Tax Payable           |           |      4.76 |
Advance Tax           |      4.76 |           |

when reconsiled with invoice then create new journal entry


      account         |   debit   |   credit  |
-----------------------------------------------
Tax Payable           |      4.76 |           |
Advance Tax           |           |      4.76 |

Send payment of 900 where negative 10%


      account         |   debit   |   credit  |
-----------------------------------------------
Outstanding Payments  |           |    900.00 |
Creditors             |    900.00 |           |
TDS Payable           |           |    100.00 |
Advance Tax           |    100.00 |      0.00 |

when reconsiled with bill then create new journal entry


      account         |   debit   |   credit  |
-----------------------------------------------
TDS Payable           |    100.00 |           |
Advance Tax           |           |    100.00 |



I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr

@robodoo
Copy link
Contributor

robodoo commented Mar 15, 2023

@C3POdoo C3POdoo requested a review from a team March 15, 2023 14:38
@C3POdoo C3POdoo added the RD research & development, internal work label Mar 15, 2023
@AntoineVDV AntoineVDV removed the request for review from a team March 15, 2023 16:27
@jva-odoo jva-odoo force-pushed the 16.0-l10n_in_payment_tax_on_advance_jva branch from 9538067 to d5be354 Compare May 15, 2023 10:55
@C3POdoo C3POdoo requested review from a team and rigr-odoo and removed request for a team May 15, 2023 10:57
@jva-odoo jva-odoo force-pushed the 16.0-l10n_in_payment_tax_on_advance_jva branch 2 times, most recently from 58ac5fd to 834f096 Compare May 17, 2023 13:53
@jva-odoo jva-odoo changed the title [ADD] l10n_in_payment_tax: add tax on payment [ADD] account_tax_on_payment: add tax on payment May 17, 2023
@jva-odoo jva-odoo force-pushed the 16.0-l10n_in_payment_tax_on_advance_jva branch 2 times, most recently from a032168 to 3ee431b Compare May 18, 2023 09:12
In some country like India, advance payment need to pay taxes

payment of 100 with 5% (included tax)

      account         |   debit   |   credit  |
-----------------------------------------------
Outstanding Receipts  |    100.00 |           |
Debtors               |           |    100.00 |
Tax Payable           |           |      4.76 |
Advance Tax           |      4.76 |           |

when reconsiled with invoice then create new journal entry

      account         |   debit   |   credit  |
-----------------------------------------------
Tax Payable           |      4.76 |           |
Advance Tax           |           |      4.76 |

Send payment of 900 where negative 10%

      account         |   debit   |   credit  |
-----------------------------------------------
Outstanding Payments  |           |    900.00 |
Creditors             |    900.00 |           |
TDS Payable           |           |    100.00 |
Advance Tax           |    100.00 |      0.00 |

when reconsiled with bill then create new journal entry

      account         |   debit   |   credit  |
-----------------------------------------------
TDS Payable           |    100.00 |           |
Advance Tax           |           |    100.00 |
@jva-odoo jva-odoo force-pushed the 16.0-l10n_in_payment_tax_on_advance_jva branch from 3ee431b to be2868c Compare May 19, 2023 10:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RD research & development, internal work
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants