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

[16.0][ADD] l10n_it_delivery_note: mostrare i totali prezzi in DDT #4562

Open
wants to merge 6 commits into
base: 16.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 37 additions & 31 deletions l10n_it_delivery_note/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ installed together.

There are two available settings:

- Base (default): one picking, one DN.
- Advanced: more picking in one DN.
- Base (default): one picking, one DN.
- Advanced: more picking in one DN.

**Italiano**

Expand All @@ -62,8 +62,8 @@ Non è possibile avere installati contemporaneamente ``l10n_it_ddt`` e

Ci sono due impostazioni possibili.

- Base (predefinita): un prelievo, un DDT.
- Avanzata: più prelievi in un DDT.
- Base (predefinita): un prelievo, un DDT.
- Avanzata: più prelievi in un DDT.

**Table of contents**

Expand All @@ -90,17 +90,23 @@ To configure this module, go to:
Checking 'Display Delivery Method in Delivery Note Report' enables in
report field 'Delivery Method'.

Checking 'Display total in DN with prices' enables in report the
'Import' column and the list of taxes with the sum of the total.

2. *Inventory → Configuration → Warehouse Management → Delivery Note
Types*

In delivery note type you can specify if the product price have to be
printed in the delivery note report/slip.

- *Inventory → Configuration → Delivery Notes → Conditions of
Transport*
- *Inventory → Configuration → Delivery Notes → Appearances of Goods*
- *Inventory → Configuration → Delivery Notes → Reasons of Transport*
- *Inventory → Configuration → Delivery Notes → Methods of Transport*
- *Inventory → Configuration → Delivery Notes → Conditions of
Transport*
- *Inventory → Configuration → Delivery Notes → Appearances of
Goods*
- *Inventory → Configuration → Delivery Notes → Reasons of
Transport*
- *Inventory → Configuration → Delivery Notes → Methods of
Transport*

3. *Settings → User & Companies → Users*

Expand Down Expand Up @@ -138,10 +144,10 @@ Funzionalità avanzata

Vengono attivate varie funzionalità aggiuntive:

- più prelievi per un DDT
- selezione multipla di prelievi e generazione dei DDT
- aggiunta righe nota e righe sezione descrittive.
- lista dei DDT.
- più prelievi per un DDT
- selezione multipla di prelievi e generazione dei DDT
- aggiunta righe nota e righe sezione descrittive.
- lista dei DDT.

Il report DDT stampa in righe aggiuntive i lotti/seriali e le scadenze
del prodotto.
Expand Down Expand Up @@ -183,39 +189,39 @@ Authors
Contributors
------------

- Riccardo Bellanova <[email protected]>
- Riccardo Bellanova <[email protected]>

- Matteo Bilotta <[email protected]>
- Matteo Bilotta <[email protected]>

- Giuseppe Borruso <[email protected]>
- Giuseppe Borruso <[email protected]>

- Marco Calcagni <[email protected]>
- Marco Calcagni <[email protected]>

- Marco Colombo <[email protected]>
- Marco Colombo <[email protected]>

- Gianmarco Conte <[email protected]>
- Gianmarco Conte <[email protected]>

- Letizia Freda <[email protected]>
- Letizia Freda <[email protected]>

- Andrea Piovesana <[email protected]>
- Andrea Piovesana <[email protected]>

- Alex Comba <[email protected]>
- Alex Comba <[email protected]>

- `Ooops <https://www.ooops404.com>`__:
- `Ooops <https://www.ooops404.com>`__:

- Giovanni Serra <[email protected]>
- Foresti Francesco <[email protected]>
- Giovanni Serra <[email protected]>
- Foresti Francesco <[email protected]>

- Nextev Srl <[email protected]>
- Nextev Srl <[email protected]>

- `PyTech-SRL <https://www.pytech.it>`__:
- `PyTech-SRL <https://www.pytech.it>`__:

- Alessandro Uffreduzzi <[email protected]>
- Sebastiano Picchi <[email protected]>
- Alessandro Uffreduzzi <[email protected]>
- Sebastiano Picchi <[email protected]>

- `Aion Tech <https://aiontech.company/>`__:
- `Aion Tech <https://aiontech.company/>`__:

- Simone Rubino <[email protected]>
- Simone Rubino <[email protected]>

Maintainers
-----------
Expand Down
4 changes: 4 additions & 0 deletions l10n_it_delivery_note/models/res_company.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ class ResCompany(models.Model):
"Display Delivery Method in Delivery Note Report",
default=False,
)
display_total_in_dn_with_prices = fields.Boolean(
"Display total in DN with prices",
default=False,
)
4 changes: 4 additions & 0 deletions l10n_it_delivery_note/models/res_config_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ def _default_virtual_locations_root(self):
related="company_id.display_delivery_method_dn_report",
readonly=False,
)
display_total_in_dn_with_prices = fields.Boolean(
related="company_id.display_total_in_dn_with_prices",
readonly=False,
)
Loading
Loading