odoo-addon-account-payment-order 17.0.1.4.1.1__py3-none-any.whl → 17.0.1.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_payment_order/README.rst +1 -1
- odoo/addons/account_payment_order/__manifest__.py +1 -1
- odoo/addons/account_payment_order/i18n/account_payment_order.pot +5 -0
- odoo/addons/account_payment_order/i18n/it.po +3 -3
- odoo/addons/account_payment_order/models/account_move.py +1 -3
- odoo/addons/account_payment_order/models/account_payment_line.py +3 -1
- odoo/addons/account_payment_order/static/description/index.html +1 -1
- odoo/addons/account_payment_order/tests/test_payment_order_inbound.py +1 -0
- {odoo_addon_account_payment_order-17.0.1.4.1.1.dist-info → odoo_addon_account_payment_order-17.0.1.4.2.dist-info}/METADATA +2 -2
- {odoo_addon_account_payment_order-17.0.1.4.1.1.dist-info → odoo_addon_account_payment_order-17.0.1.4.2.dist-info}/RECORD +12 -12
- {odoo_addon_account_payment_order-17.0.1.4.1.1.dist-info → odoo_addon_account_payment_order-17.0.1.4.2.dist-info}/WHEEL +0 -0
- {odoo_addon_account_payment_order-17.0.1.4.1.1.dist-info → odoo_addon_account_payment_order-17.0.1.4.2.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Account Payment Order
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:34262e956520d4690ac7430df127e9b241b48fc2aa8e51bba4f7c5951b282f56
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
|
@@ -1080,6 +1080,11 @@ msgid ""
|
|
|
1080
1080
|
"Planned: Future activities."
|
|
1081
1081
|
msgstr ""
|
|
1082
1082
|
|
|
1083
|
+
#. module: account_payment_order
|
|
1084
|
+
#: model:ir.model.fields.selection,name:account_payment_order.selection__account_payment_line__communication_type__structured
|
|
1085
|
+
msgid "Structured"
|
|
1086
|
+
msgstr ""
|
|
1087
|
+
|
|
1083
1088
|
#. module: account_payment_order
|
|
1084
1089
|
#: model:ir.model.fields.selection,name:account_payment_order.selection__account_move__reference_type__structured
|
|
1085
1090
|
msgid "Structured Reference"
|
|
@@ -9,7 +9,7 @@ msgstr ""
|
|
|
9
9
|
"Project-Id-Version: Odoo Server 11.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
11
|
"POT-Creation-Date: 2017-11-23 03:38+0000\n"
|
|
12
|
-
"PO-Revision-Date: 2024-
|
|
12
|
+
"PO-Revision-Date: 2024-08-12 08:58+0000\n"
|
|
13
13
|
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
|
14
14
|
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
|
15
15
|
"Language: it\n"
|
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: \n"
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
-
"X-Generator: Weblate
|
|
20
|
+
"X-Generator: Weblate 5.6.2\n"
|
|
21
21
|
|
|
22
22
|
#. module: account_payment_order
|
|
23
23
|
#. odoo-python
|
|
@@ -935,7 +935,7 @@ msgstr "Conteggio righe pagamento"
|
|
|
935
935
|
#. module: account_payment_order
|
|
936
936
|
#: model:ir.model.fields,field_description:account_payment_order.field_account_payment__payment_line_date
|
|
937
937
|
msgid "Payment Line Date"
|
|
938
|
-
msgstr ""
|
|
938
|
+
msgstr "Data riga pagamento"
|
|
939
939
|
|
|
940
940
|
#. module: account_payment_order
|
|
941
941
|
#: model:ir.actions.act_window,name:account_payment_order.account_payment_line_action
|
|
@@ -50,9 +50,7 @@ class AccountMove(models.Model):
|
|
|
50
50
|
"""Retrieve the communication string for this direct item."""
|
|
51
51
|
communication = self.payment_reference or self.ref or self.name
|
|
52
52
|
if self.is_invoice():
|
|
53
|
-
if
|
|
54
|
-
communication = self.ref
|
|
55
|
-
elif self.is_purchase_document():
|
|
53
|
+
if self.is_purchase_document():
|
|
56
54
|
communication = self.ref or self.payment_reference
|
|
57
55
|
else:
|
|
58
56
|
communication = self.payment_reference or self.name
|
|
@@ -78,7 +78,9 @@ class AccountPaymentLine(models.Model):
|
|
|
78
78
|
required=False, help="Label of the payment that will be seen by the destinee"
|
|
79
79
|
)
|
|
80
80
|
communication_type = fields.Selection(
|
|
81
|
-
selection=[("normal", "Free")
|
|
81
|
+
selection=[("normal", "Free"), ("structured", "Structured")],
|
|
82
|
+
required=True,
|
|
83
|
+
default="normal",
|
|
82
84
|
)
|
|
83
85
|
payment_ids = fields.Many2many(
|
|
84
86
|
comodel_name="account.payment",
|
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:34262e956520d4690ac7430df127e9b241b48fc2aa8e51bba4f7c5951b282f56
|
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/bank-payment/tree/17.0/account_payment_order"><img alt="OCA/bank-payment" src="https://img.shields.io/badge/github-OCA%2Fbank--payment-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/bank-payment-17-0/bank-payment-17-0-account_payment_order"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/bank-payment&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
373
|
<p>This module adds support for payment orders and debit orders.</p>
|
|
@@ -77,6 +77,7 @@ class TestPaymentOrderInboundBase(AccountTestInvoicingCommon):
|
|
|
77
77
|
invoice_line_form.price_unit = 100.0
|
|
78
78
|
invoice_line_form.account_id = self.invoice_line_account
|
|
79
79
|
invoice_line_form.tax_ids.clear()
|
|
80
|
+
invoice_form.reference_type = "structured"
|
|
80
81
|
invoice = invoice_form.save()
|
|
81
82
|
invoice_form = Form(invoice)
|
|
82
83
|
invoice_form.payment_mode_id = self.inbound_mode
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_payment_order
|
|
3
|
-
Version: 17.0.1.4.
|
|
3
|
+
Version: 17.0.1.4.2
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo-addon-account_payment_partner>=17.0dev,<17.1dev
|
|
6
6
|
Requires-Dist: odoo>=17.0a,<17.1dev
|
|
@@ -24,7 +24,7 @@ Account Payment Order
|
|
|
24
24
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
25
|
!! changes will be overwritten. !!
|
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
27
|
+
!! source digest: sha256:34262e956520d4690ac7430df127e9b241b48fc2aa8e51bba4f7c5951b282f56
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
29
|
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
odoo/addons/account_payment_order/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_payment_order/README.rst,sha256=R0mGHFULdcXm5IEcHmJFkSIA4zA2gDoyejmOwpL5nwc,4680
|
|
2
2
|
odoo/addons/account_payment_order/__init__.py,sha256=HVXFv0Gbl3gl3fcRBZhi3rlZgriQVo_8LiEgUjtkcFs,96
|
|
3
|
-
odoo/addons/account_payment_order/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_payment_order/__manifest__.py,sha256=lQGek1UkezELPMPDXzPZg64BBlLKGuEZUVyeQL8gnUQ,1606
|
|
4
4
|
odoo/addons/account_payment_order/hooks.py,sha256=XQDHFvlq4pQCJoEM6sY01Vh6kOgG6JFP3DPNPliyntA,667
|
|
5
5
|
odoo/addons/account_payment_order/data/payment_seq.xml,sha256=EKeoSUKlM3TH7vljq7tj6XvPJMMQu8IMtwKC_LM4C4A,864
|
|
6
6
|
odoo/addons/account_payment_order/demo/payment_demo.xml,sha256=-qNu7yLwK9I80Ol6YfwoccqpSsCHx2kSumcp2WlgsxU,1412
|
|
7
|
-
odoo/addons/account_payment_order/i18n/account_payment_order.pot,sha256=
|
|
7
|
+
odoo/addons/account_payment_order/i18n/account_payment_order.pot,sha256=t3iVWo84OUtzwJQBetTmHSVWNuB-HkJafvndhdFkPIA,49873
|
|
8
8
|
odoo/addons/account_payment_order/i18n/am.po,sha256=AUwMwrFIZY1QkFHj-M_z59-H_vPiqcy5t3W9z9jfx3I,50071
|
|
9
9
|
odoo/addons/account_payment_order/i18n/ar.po,sha256=7uTWOVSIJ5_PMz8wl_MeTcg3d2ccfJCJXsrAKZtMUeY,50087
|
|
10
10
|
odoo/addons/account_payment_order/i18n/ca.po,sha256=8lnPUi__pmpK8QsdK_16eW2io1pfx07F0sQ-23ohDe0,64165
|
|
@@ -27,7 +27,7 @@ odoo/addons/account_payment_order/i18n/fr.po,sha256=x1w1shOoCdqn0tyrU5TtbS_HFsgU
|
|
|
27
27
|
odoo/addons/account_payment_order/i18n/fr_FR.po,sha256=CVjjvwmQQR6Ox_CWE9obEBsTXfL5l3-PAU6wqKfSxjw,63419
|
|
28
28
|
odoo/addons/account_payment_order/i18n/gl.po,sha256=FsB4ypLQR2Gn2ed84M3pLmCifkbELTJudXGeV0QkO4g,50073
|
|
29
29
|
odoo/addons/account_payment_order/i18n/hr.po,sha256=QaM_yXDRM8sWU25RKdzaoBEpwg5el281F79gh6R34Lw,50769
|
|
30
|
-
odoo/addons/account_payment_order/i18n/it.po,sha256=
|
|
30
|
+
odoo/addons/account_payment_order/i18n/it.po,sha256=nQ3dOKe0LpGRhFIOd5HS2HRlDtfyKROsmY3VQFswWq8,58677
|
|
31
31
|
odoo/addons/account_payment_order/i18n/lt.po,sha256=g0JSgfvsK6g_Ix89RaTDfZXlvVUPi8cdw4wRG6OGp7M,50070
|
|
32
32
|
odoo/addons/account_payment_order/i18n/nb_NO.po,sha256=MKEwYNcELGVTWt38kz9C_s1JDrApSrAMR1WJ-WCt1vk,51922
|
|
33
33
|
odoo/addons/account_payment_order/i18n/nl.po,sha256=YnOxWA9GNNttFjCg5-z36c7lctb9bvjvA_D1L69qfLs,57408
|
|
@@ -46,10 +46,10 @@ odoo/addons/account_payment_order/i18n/tr.po,sha256=y_DIBoi9eJkUUXtKrfV9kfuE88gR
|
|
|
46
46
|
odoo/addons/account_payment_order/i18n/vi.po,sha256=o4KLvIDU0wz-uCXOLz99vFYVXHI07tOdd3tjZeZPiTw,49998
|
|
47
47
|
odoo/addons/account_payment_order/models/__init__.py,sha256=AB9PJLjHR7TmbreS6BTHIEbeQvF0dYuk81dgN8_gbKs,285
|
|
48
48
|
odoo/addons/account_payment_order/models/account_journal.py,sha256=J5PwsFBj61Jn7mnpd2e61hEo-2mYVQycxpV5zUXmTrs,1188
|
|
49
|
-
odoo/addons/account_payment_order/models/account_move.py,sha256=
|
|
49
|
+
odoo/addons/account_payment_order/models/account_move.py,sha256=4ed_De8rw0nkO2P5TVkh8REQQbBCT15VMbbomwVfzPI,9991
|
|
50
50
|
odoo/addons/account_payment_order/models/account_move_line.py,sha256=SLPNyIOWmE40FzkKsMIkhRVXc_UbSwJ9PICKj4AlDco,3783
|
|
51
51
|
odoo/addons/account_payment_order/models/account_payment.py,sha256=F0IHzXhxxNg3sLhgaF-XPi84LdmvE1GsNWAWozarTTI,3013
|
|
52
|
-
odoo/addons/account_payment_order/models/account_payment_line.py,sha256=
|
|
52
|
+
odoo/addons/account_payment_order/models/account_payment_line.py,sha256=64Foji2I2dnK1Ec-6tviRVr2xWxpvI0ssEaKnXFOMvI,9443
|
|
53
53
|
odoo/addons/account_payment_order/models/account_payment_method.py,sha256=z1_LzvZY17SPRTwT2XwHFyUfy2YN3m00WA62gznPzcE,431
|
|
54
54
|
odoo/addons/account_payment_order/models/account_payment_mode.py,sha256=uONi4ezJRHHbTeD1cDiUDWorvoGnWnKeqTVGHsohJRM,3589
|
|
55
55
|
odoo/addons/account_payment_order/models/account_payment_order.py,sha256=B-g8WjE5uI5IKS5-HYNEFvbbjjQPRWyyUiDOWm2F5ow,16809
|
|
@@ -66,12 +66,12 @@ odoo/addons/account_payment_order/report/print_account_payment_order.xml,sha256=
|
|
|
66
66
|
odoo/addons/account_payment_order/security/ir.model.access.csv,sha256=DquU4QYd706_JxewPT0eAy4pc37FeGcoynOqUmu45kc,1211
|
|
67
67
|
odoo/addons/account_payment_order/security/payment_security.xml,sha256=kfkYDi4hkrQCm8lRUUIrqQoibzN8h67H2qV_mj390eQ,1248
|
|
68
68
|
odoo/addons/account_payment_order/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
69
|
-
odoo/addons/account_payment_order/static/description/index.html,sha256=
|
|
69
|
+
odoo/addons/account_payment_order/static/description/index.html,sha256=WSe77JlWzWqGBMnW_6_gSUhNRptnZCqysy2dzEOjva4,16031
|
|
70
70
|
odoo/addons/account_payment_order/tests/__init__.py,sha256=lOx5jg7LBTMs0mXira6LpqK_dNDUbPa5nViWWAug7xc,174
|
|
71
71
|
odoo/addons/account_payment_order/tests/test_account_payment.py,sha256=D_gDXDO94gpgANHEJx6cCIHh7em2GOXZqhWqqav4XVw,6787
|
|
72
72
|
odoo/addons/account_payment_order/tests/test_bank.py,sha256=4d1l8o43-Gy_D7d24Na-E7T9o5ALAgtn8xD7JWJJ2UQ,403
|
|
73
73
|
odoo/addons/account_payment_order/tests/test_payment_mode.py,sha256=ek_ypq8ignQPMzFoDT3JR53tZ00Utfc5TY5W3Htx01A,3300
|
|
74
|
-
odoo/addons/account_payment_order/tests/test_payment_order_inbound.py,sha256=
|
|
74
|
+
odoo/addons/account_payment_order/tests/test_payment_order_inbound.py,sha256=SN_6o_xQDW2gWp1_6-iBSvzYydXi-XeHd5QMTw55WLk,8059
|
|
75
75
|
odoo/addons/account_payment_order/tests/test_payment_order_outbound.py,sha256=JDxT8EvO3IaH2lDzXn7KFtnK8MwqUO_nY40IiTU_x4s,17986
|
|
76
76
|
odoo/addons/account_payment_order/views/account_invoice_view.xml,sha256=JCD_j1AM25g9o12AW9LfmZOrNUrWUJNWY-Nrulj1018,4190
|
|
77
77
|
odoo/addons/account_payment_order/views/account_move_line.xml,sha256=MZDzWzwWVO9HkMT0dmGJHJuLNmYo2gtgga3ls6iBWyk,2373
|
|
@@ -88,7 +88,7 @@ odoo/addons/account_payment_order/wizard/account_payment_line_create.py,sha256=F
|
|
|
88
88
|
odoo/addons/account_payment_order/wizard/account_payment_line_create_view.xml,sha256=Ln0tzR3xytjZdSuzWSc6X4MQxUG2vPxqfiPSo5JCguc,4532
|
|
89
89
|
odoo/addons/account_payment_order/wizard/account_payment_update.py,sha256=20_tas7P85zDv1A-LyG5UTjKdx9EJy-0vKldt1n3Tt8,547
|
|
90
90
|
odoo/addons/account_payment_order/wizard/account_payment_update_views.xml,sha256=NW4YiMhhmM5xCJ5n86KNPtn5xRnCmvzuwRw-BmRiBMM,979
|
|
91
|
-
odoo_addon_account_payment_order-17.0.1.4.
|
|
92
|
-
odoo_addon_account_payment_order-17.0.1.4.
|
|
93
|
-
odoo_addon_account_payment_order-17.0.1.4.
|
|
94
|
-
odoo_addon_account_payment_order-17.0.1.4.
|
|
91
|
+
odoo_addon_account_payment_order-17.0.1.4.2.dist-info/METADATA,sha256=04qzRfIDqNvwYhFTh_kDIwZyzrCSP6oeuyXERCS3Wmg,5343
|
|
92
|
+
odoo_addon_account_payment_order-17.0.1.4.2.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
|
|
93
|
+
odoo_addon_account_payment_order-17.0.1.4.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
94
|
+
odoo_addon_account_payment_order-17.0.1.4.2.dist-info/RECORD,,
|
|
File without changes
|