91c20a2c03
Since odoo/documentation#903, the guideline for the location of new resource (images, downloadable files, RST includes...) files is to place those inside the directory of the RST page that references them. For example, if `doc1.rst` has a reference to `image.png` and to `download.zip`, the file structure should look like this: ├── parent_doc/ │ └── doc1/ │ │ └── image.png │ │ └── download.zip │ └── doc1.rst │ └── doc2.rst ├── parent_doc.rst Before this commit, most of the resource files were still located inside 'media' directories holding all the resource files referenced by RST pages located at the same level as these directories. In the example above, a single 'media' directory would hold all the resource files referenced by both `doc1.rst` and `doc2.rst`. Doing so prevented us from figuring out easily which resource file was referenced by which RST page and, thus, lead to unused resource files piling up in the repository. It also made it more complicated to define codeowners regex rules because a team could not simply be assigned to `/some_page.*` but needed to be assigned to both `/some_page\.rst` and to the location of 'media'. In order to help new content writers figure out the guideline when taking examples from other RST pages, this commit retroactively applies the guideline to existing resource files and 'media' directories. The left-over resource files that are not referenced by any RST page are removed. task-2497965 Part-of: odoo/documentation#2026
96 lines
3.9 KiB
ReStructuredText
96 lines
3.9 KiB
ReStructuredText
=======================
|
||
Manage cash basis taxes
|
||
=======================
|
||
|
||
The cash basis taxes are due when the payment has been done and not at
|
||
the validation of the invoice (as it is the case with standard taxes).
|
||
Reporting your income and expenses to the administration based on the
|
||
cash basis method is legal in some countries and under some conditions.
|
||
|
||
Example : You sell a product in the 1st quarter of your fiscal year and
|
||
receive the payment the 2nd quarter of your fiscal year. Based on the
|
||
cash basis method, the tax you have to pay to the administration is due
|
||
for the 2nd quarter.
|
||
|
||
How to configure cash basis taxes ?
|
||
------------------------------------
|
||
|
||
You first have to activate the setting in
|
||
:menuselection:`Accounting --> Configuration --> Settings --> Allow Tax Cash Basis`.
|
||
You will be asked to define the Tax Cash Basis Journal.
|
||
|
||
.. image:: cash_basis_taxes/cash_basis_taxes01.png
|
||
:width: 5.04688in
|
||
:height: 0.79688in
|
||
:align: center
|
||
|
||
Once this is done, you can configure your taxes in
|
||
:menuselection:`Accounting --> Configuration --> Taxes`.
|
||
At first set the proper transitional accounts to post taxes
|
||
until you register the payment.
|
||
|
||
.. image:: cash_basis_taxes/cash_basis_taxes02.png
|
||
:align: center
|
||
|
||
In the *Advanced Options* tab you will turn *Tax Due* to
|
||
*Based on Payment*. You will then have to
|
||
define the *Tax Received* account in which to post the tax amount
|
||
when the payment is received and the *Base Tax Received Account*
|
||
to post the base tax amount for an accurate tax report.
|
||
|
||
.. image:: cash_basis_taxes/cash_basis_taxes03.png
|
||
:align: center
|
||
|
||
What is the impact of cash basis taxes in my accounting ?
|
||
----------------------------------------------------------
|
||
|
||
Let’s take an example. You make a sale of $100 with a 15% cash basis
|
||
tax. When you validate the customer invoice, the following entry is
|
||
created in your accounting:
|
||
|
||
+-----------------------------+---------------------------+
|
||
| Customer Invoices Journal | |
|
||
+=============================+===========================+
|
||
| **Debit** | **Credit** |
|
||
+-----------------------------+---------------------------+
|
||
| Receivables $115 | |
|
||
+-----------------------------+---------------------------+
|
||
| | Temporary Tax Account $15 |
|
||
+-----------------------------+---------------------------+
|
||
| | Income Account $100 |
|
||
+-----------------------------+---------------------------+
|
||
|
||
A few days later, you receive the payment:
|
||
|
||
+----------------+--------------------+
|
||
| Bank Journal | |
|
||
+================+====================+
|
||
| **Debit** | **Credit** |
|
||
+----------------+--------------------+
|
||
| Bank $115 | |
|
||
+----------------+--------------------+
|
||
| | Receivables $115 |
|
||
+----------------+--------------------+
|
||
|
||
When you reconcile the invoice and the payment, this entry is generated:
|
||
|
||
+--------------------------+----------------------------+
|
||
| Tax Cash Basis Journal |
|
||
+==========================+============================+
|
||
| **Debit** | **Credit** |
|
||
+--------------------------+----------------------------+
|
||
| Temporary Tax Account $15| |
|
||
+--------------------------+----------------------------+
|
||
| | Tax Received Account $15 |
|
||
+--------------------------+----------------------------+
|
||
| Income Account $100 | |
|
||
+--------------------------+----------------------------+
|
||
| | Income Account $100 |
|
||
+--------------------------+----------------------------+
|
||
|
||
.. tip::
|
||
The last two journal items are neutral but they are needed to insure
|
||
correct tax reports in Odoo with accurate base tax amounts.
|
||
We advise to use a default revenue account.
|
||
The balance of this account will then always be at zero.
|