Skip to content

Commit 715ff9a

Browse files
Swapnesh-SerpentCSalexis-via
authored andcommitted
[MIG] sale_commercial_partner: Migration to 12.0
[UPD] README.rst [UPD] Update sale_commercial_partner.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: sale-workflow-12.0/sale-workflow-12.0-sale_commercial_partner Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-12-0/sale-workflow-12-0-sale_commercial_partner/ [UPD] README.rst
1 parent 0ca3fc5 commit 715ff9a

26 files changed

+619
-95
lines changed

sale_commercial_partner/README.rst

+47-18
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,39 @@
1-
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
2-
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
3-
:alt: License: AGPL-3
4-
51
=======================
62
Sale Commercial Partner
73
=======================
84

5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
17+
:target: https://github.com/OCA/sale-workflow/tree/12.0/sale_commercial_partner
18+
:alt: OCA/sale-workflow
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/sale-workflow-12-0/sale-workflow-12-0-sale_commercial_partner
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/167/12.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
928
This module adds a related stored field *Commercial Entity* on sale orders.
1029

1130
This module is the twin brother of the OCA module *purchase_commercial_partner* located in the `purchase-workflow project <https://github.com/OCA/purchase-workflow/>`_.
1231

32+
**Table of contents**
33+
34+
.. contents::
35+
:local:
36+
1337
Usage
1438
=====
1539

@@ -19,38 +43,43 @@ You can group by *Commercial Entity*:
1943
* in *Sales > Sales > Sales Orders*,
2044
* in *Sales > Reports > Sales* (it is a native feature in this menu)
2145

22-
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
23-
:alt: Try me on Runbot
24-
:target: https://runbot.odoo-community.org/runbot/167/11.0
25-
2646
Bug Tracker
2747
===========
2848

29-
Bugs are tracked on `GitHub Issues
30-
<https://github.com/OCA/sale-workflow/issues>`_. In case of trouble, please
31-
check there if your issue has already been reported. If you spotted it first,
32-
help us smashing it by providing a detailed and welcomed feedback.
49+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
50+
In case of trouble, please check there if your issue has already been reported.
51+
If you spotted it first, help us smashing it by providing a detailed and welcomed
52+
`feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_commercial_partner%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
53+
54+
Do not contact contributors directly about support or help with technical issues.
3355

3456
Credits
3557
=======
3658

59+
Authors
60+
~~~~~~~
61+
62+
* Akretion
63+
3764
Contributors
38-
------------
65+
~~~~~~~~~~~~
3966

4067
* Alexis de Lattre <alexis.delattre@akretion.com>
4168
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
4269

43-
Maintainer
44-
----------
70+
Maintainers
71+
~~~~~~~~~~~
72+
73+
This module is maintained by the OCA.
4574

4675
.. image:: https://odoo-community.org/logo.png
4776
:alt: Odoo Community Association
4877
:target: https://odoo-community.org
4978

50-
This module is maintained by the OCA.
51-
5279
OCA, or the Odoo Community Association, is a nonprofit organization whose
5380
mission is to support the collaborative development of Odoo features and
5481
promote its widespread use.
5582

56-
To contribute to this module, please visit https://odoo-community.org.
83+
This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/12.0/sale_commercial_partner>`_ project on GitHub.
84+
85+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

sale_commercial_partner/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
21
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
32

43
from . import models

sale_commercial_partner/__manifest__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
{
66
'name': 'Sale Commercial Partner',
77
'summary': "Add stored related field 'Commercial Entity' on sale orders",
8-
'version': '11.0.1.0.0',
8+
'version': '12.0.1.0.0',
99
'author': 'Akretion,Odoo Community Association (OCA)',
10-
'website': 'http://www.akretion.com',
10+
'website': 'https://github.com/OCA/sale-workflow',
1111
'category': 'Sales',
1212
'license': 'AGPL-3',
1313
"contributors": [

sale_commercial_partner/i18n/ca_ES.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/de.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/el_GR.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/es.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/es_VE.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/fi.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/fr.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/hr.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/hu.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/it.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/nl.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/pt_BR.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

sale_commercial_partner/i18n/ro.po

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ msgstr ""
1717
"Plural-Forms: \n"
1818

1919
#. module: sale_commercial_partner
20-
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order_commercial_partner_id
21-
#: model:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
20+
#: model:ir.model.fields,field_description:sale_commercial_partner.field_sale_order__commercial_partner_id
21+
#: model_terms:ir.ui.view,arch_db:sale_commercial_partner.view_sales_order_filter
2222
msgid "Commercial Entity"
2323
msgstr "Commercial Entity"
2424

2525
#. module: sale_commercial_partner
2626
#: model:ir.model,name:sale_commercial_partner.model_sale_order
27-
msgid "Quotation"
28-
msgstr "Quotation"
27+
msgid "Sale Order"
28+
msgstr ""
29+
30+
#~ msgid "Quotation"
31+
#~ msgstr "Quotation"

0 commit comments

Comments
 (0)