Skip to content

Commit 701f430

Browse files
committed
Merge PR #1653 into 17.0
Signed-off-by gurneyalex
2 parents d5372a0 + 2b211be commit 701f430

24 files changed

+1643
-0
lines changed
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
============================
2+
Product Pricelist Simulation
3+
============================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:2513673103ff2aa9ab6d6a06de76b1dbcf708f064be19889c4b35fa43b47737c
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproduct--attribute-lightgray.png?logo=github
20+
:target: https://github.com/OCA/product-attribute/tree/17.0/product_pricelist_simulation
21+
:alt: OCA/product-attribute
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/product-attribute-17-0/product-attribute-17-0-product_pricelist_simulation
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/product-attribute&target_branch=17.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module extends the product pricelists feature to allow show price
32+
for all pricelists from a product form view.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Usage
40+
=====
41+
42+
To use this module, you need to:
43+
44+
1. Go to product form view.
45+
2. Click *See Price per Pricelist* button.
46+
3. A new dialog will appear showing the prices for the current date and
47+
quantity=1 for the current product.
48+
4. You can modify the date to see the prices on that date (if you have
49+
pricelists with specific intervals of time), or for other quantity
50+
(if you have pricelists depending on the number).
51+
5. If you have clicked from a product with variants, you will see by
52+
default the prices for all the existing variants on each shown
53+
pricelist, but you can select a specific variant in the field
54+
"Product Variant" to filter out the rest of the variants except the
55+
selected one.
56+
57+
Bug Tracker
58+
===========
59+
60+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/product-attribute/issues>`_.
61+
In case of trouble, please check there if your issue has already been reported.
62+
If you spotted it first, help us to smash it by providing a detailed and welcomed
63+
`feedback <https://github.com/OCA/product-attribute/issues/new?body=module:%20product_pricelist_simulation%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
64+
65+
Do not contact contributors directly about support or help with technical issues.
66+
67+
Credits
68+
=======
69+
70+
Authors
71+
-------
72+
73+
* GRAP
74+
* Tecnativa
75+
76+
Contributors
77+
------------
78+
79+
- Sylvain LE GAL <https://twitter.com/legalsylvain>
80+
- `Tecnativa <https://www.tecnativa.com>`__:
81+
- `FactorLibre <https://www.factorlibre.com>`__
82+
83+
- Sergio Teruel
84+
- Ernesto Tejeda
85+
- Pedro M. Baeza
86+
- Hugo Córdoba
87+
88+
Maintainers
89+
-----------
90+
91+
This module is maintained by the OCA.
92+
93+
.. image:: https://odoo-community.org/logo.png
94+
:alt: Odoo Community Association
95+
:target: https://odoo-community.org
96+
97+
OCA, or the Odoo Community Association, is a nonprofit organization whose
98+
mission is to support the collaborative development of Odoo features and
99+
promote its widespread use.
100+
101+
.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
102+
:target: https://github.com/legalsylvain
103+
:alt: legalsylvain
104+
105+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
106+
107+
|maintainer-legalsylvain|
108+
109+
This module is part of the `OCA/product-attribute <https://github.com/OCA/product-attribute/tree/17.0/product_pricelist_simulation>`_ project on GitHub.
110+
111+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import models
2+
from . import wizards
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright 2017 Tecnativa - Sergio Teruel
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
3+
4+
{
5+
"name": "Product Pricelist Simulation",
6+
"summary": "Simulate the product price for all pricelists",
7+
"version": "17.0.1.0.0",
8+
"category": "Product",
9+
"website": "https://github.com/OCA/product-attribute",
10+
"author": "GRAP, Tecnativa, Odoo Community Association (OCA)",
11+
"maintainers": ["legalsylvain"],
12+
"license": "AGPL-3",
13+
"application": False,
14+
"installable": True,
15+
"depends": ["product"],
16+
"data": [
17+
"security/ir.model.access.csv",
18+
"wizards/wizard_preview_pricelist_views.xml",
19+
"views/product_views.xml",
20+
"views/pricelist_views.xml",
21+
],
22+
}
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_pricelist_simulation
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 9.0c\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2022-07-13 20:23+0000\n"
10+
"PO-Revision-Date: 2023-11-04 11:38+0000\n"
11+
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
12+
"Language-Team: \n"
13+
"Language: es\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
18+
"X-Generator: Weblate 4.17\n"
19+
20+
#. module: product_pricelist_simulation
21+
#: model_terms:ir.ui.view,arch_db:product_pricelist_simulation.view_pricelist_simulation_view_form
22+
msgid "Close"
23+
msgstr "Cerrar"
24+
25+
#. module: product_pricelist_simulation
26+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__create_uid
27+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__create_uid
28+
msgid "Created by"
29+
msgstr "Creado por"
30+
31+
#. module: product_pricelist_simulation
32+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__create_date
33+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__create_date
34+
msgid "Created on"
35+
msgstr "Creado el"
36+
37+
#. module: product_pricelist_simulation
38+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__currency_id
39+
msgid "Currency"
40+
msgstr "Moneda"
41+
42+
#. module: product_pricelist_simulation
43+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__price_date
44+
msgid "Date"
45+
msgstr "Fecha"
46+
47+
#. module: product_pricelist_simulation
48+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__display_name
49+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__display_name
50+
msgid "Display Name"
51+
msgstr "Nombre mostrado"
52+
53+
#. module: product_pricelist_simulation
54+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__id
55+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__id
56+
msgid "ID"
57+
msgstr "ID"
58+
59+
#. module: product_pricelist_simulation
60+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist____last_update
61+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line____last_update
62+
msgid "Last Modified on"
63+
msgstr "Últ. modificación en"
64+
65+
#. module: product_pricelist_simulation
66+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__write_uid
67+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__write_uid
68+
msgid "Last Updated by"
69+
msgstr "Últ. actualización por"
70+
71+
#. module: product_pricelist_simulation
72+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__write_date
73+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__write_date
74+
msgid "Last Updated on"
75+
msgstr "Últ. actualización el"
76+
77+
#. module: product_pricelist_simulation
78+
#: model:ir.model,name:product_pricelist_simulation.model_product_pricelist
79+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__pricelist_id
80+
msgid "Pricelist"
81+
msgstr "Tarifa"
82+
83+
#. module: product_pricelist_simulation
84+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__template_id
85+
msgid "Product Template"
86+
msgstr "Plantilla de producto"
87+
88+
#. module: product_pricelist_simulation
89+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__product_id
90+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__product_id
91+
msgid "Product Variant"
92+
msgstr "Variante de producto"
93+
94+
#. module: product_pricelist_simulation
95+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__product_qty
96+
msgid "Quantity"
97+
msgstr "Cantidad"
98+
99+
#. module: product_pricelist_simulation
100+
#: model:ir.actions.act_window,name:product_pricelist_simulation.pricelist_simulation_action
101+
#: model_terms:ir.ui.view,arch_db:product_pricelist_simulation.product_template_form_view_pricelist_simulation
102+
msgid "See Price per Pricelist"
103+
msgstr "Ver precio por tarifa"
104+
105+
#. module: product_pricelist_simulation
106+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_product_pricelist__show_in_simulation
107+
msgid "Show In Simulation"
108+
msgstr "Mostrar En Simulación"
109+
110+
#. module: product_pricelist_simulation
111+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__simulation_id
112+
msgid "Simulation"
113+
msgstr "Simulación"
114+
115+
#. module: product_pricelist_simulation
116+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__line_ids
117+
msgid "Simulation Lines"
118+
msgstr "Líneas de simulación"
119+
120+
#. module: product_pricelist_simulation
121+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist_line__price
122+
msgid "Unit Price"
123+
msgstr "Precio Unitario"
124+
125+
#. module: product_pricelist_simulation
126+
#: model:ir.model.fields,field_description:product_pricelist_simulation.field_wizard_preview_pricelist__variant_count
127+
msgid "Variants Count"
128+
msgstr "Variantes"
129+
130+
#. module: product_pricelist_simulation
131+
#: model:ir.model,name:product_pricelist_simulation.model_wizard_preview_pricelist
132+
msgid "wizard - Preview Pricelist"
133+
msgstr "asistente - Vista previa de la lista de precios"
134+
135+
#. module: product_pricelist_simulation
136+
#: model:ir.model,name:product_pricelist_simulation.model_wizard_preview_pricelist_line
137+
msgid "wizard - Preview Pricelist Line"
138+
msgstr "asistente - Vista previa de línea de lista de precios"
139+
140+
#~ msgid "Price"
141+
#~ msgstr "Precio"
142+
143+
#~ msgid "Show in simulation"
144+
#~ msgstr "Mostrar en simulación"

0 commit comments

Comments
 (0)