odoo-addon-account-payment-order 18.0.1.2.1.2__py3-none-any.whl → 18.0.1.2.2.1__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.
@@ -11,7 +11,7 @@ Account Payment Order
11
11
  !! This file is generated by oca-gen-addon-readme !!
12
12
  !! changes will be overwritten. !!
13
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
- !! source digest: sha256:6a01ec02f02f7416e5ab3c5a579b4d345c477f62e6f8cb727eaf118417f3c1bc
14
+ !! source digest: sha256:2ce90a207180781d129a58398eab1dc58fb2d2da3526a1db9994da3ca322c792
15
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16
16
 
17
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
@@ -9,7 +9,7 @@
9
9
 
10
10
  {
11
11
  "name": "Account Payment Order",
12
- "version": "18.0.1.2.1",
12
+ "version": "18.0.1.2.2",
13
13
  "license": "AGPL-3",
14
14
  "author": "ACSONE SA/NV, "
15
15
  "Therp BV, "
@@ -7,14 +7,15 @@ msgstr ""
7
7
  "Project-Id-Version: Odoo Server 16.0+e\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "POT-Creation-Date: 2023-02-22 09:47+0000\n"
10
- "PO-Revision-Date: 2023-03-04 20:41+0100\n"
11
- "Last-Translator: \n"
10
+ "PO-Revision-Date: 2026-02-02 10:09+0000\n"
11
+ "Last-Translator: smaddlsoft <jm.veddeler@gmail.com>\n"
12
12
  "Language-Team: \n"
13
13
  "Language: de\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: \n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Generator: Weblate 5.15.2\n"
18
19
 
19
20
  #. module: account_payment_order
20
21
  #. odoo-python
@@ -354,13 +355,13 @@ msgstr "Währung der Zahlungstransaktion"
354
355
  #. module: account_payment_order
355
356
  #: model_terms:ir.ui.view,arch_db:account_payment_order.print_account_payment_order_document
356
357
  msgid "Debit Order"
357
- msgstr "Zum Lastschriftauftrag hinzufügen"
358
+ msgstr "Lastschriftauftrag"
358
359
 
359
360
  #. module: account_payment_order
360
361
  #: model:ir.actions.act_window,name:account_payment_order.account_payment_order_inbound_action
361
362
  #: model:ir.ui.menu,name:account_payment_order.account_payment_order_inbound_menu
362
363
  msgid "Debit Orders"
363
- msgstr "Abbuchungsaufträge"
364
+ msgstr "Lastschriftaufträge"
364
365
 
365
366
  #. module: account_payment_order
366
367
  #: model:ir.model.fields,field_description:account_payment_order.field_account_payment_mode__default_date_prefered
@@ -372,7 +372,7 @@ ul.auto-toc {
372
372
  !! This file is generated by oca-gen-addon-readme !!
373
373
  !! changes will be overwritten. !!
374
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
375
- !! source digest: sha256:6a01ec02f02f7416e5ab3c5a579b4d345c477f62e6f8cb727eaf118417f3c1bc
375
+ !! source digest: sha256:2ce90a207180781d129a58398eab1dc58fb2d2da3526a1db9994da3ca322c792
376
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
377
377
  <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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/bank-payment/tree/18.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-18-0/bank-payment-18-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&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
378
378
  <p>This module adds support for payment orders and debit orders.</p>
@@ -9,6 +9,7 @@ from freezegun import freeze_time
9
9
 
10
10
  from odoo.exceptions import UserError, ValidationError
11
11
  from odoo.tests import Form, tagged
12
+ from odoo.tools import mute_logger
12
13
 
13
14
  from odoo.addons.account.tests.common import AccountTestInvoicingCommon
14
15
 
@@ -114,6 +115,7 @@ class TestPaymentOrderInbound(TestPaymentOrderInboundBase):
114
115
  "R1234", self.invoice._get_payment_order_communication_direct()
115
116
  )
116
117
 
118
+ @mute_logger("odoo.models.unlink")
117
119
  def test_creation(self):
118
120
  payment_order = self.inbound_order
119
121
  self.assertEqual(len(payment_order.ids), 1)
@@ -137,6 +139,7 @@ class TestPaymentOrderInbound(TestPaymentOrderInboundBase):
137
139
  payment_order.unlink()
138
140
  self.assertEqual(len(self.payment_order_obj.search(self.domain)), 0)
139
141
 
142
+ @mute_logger("odoo.models.unlink")
140
143
  def test_creation_out_receipt(self):
141
144
  # Make sure no others orders are present
142
145
  self.payment_order_obj.search(self.domain).unlink()
@@ -8,6 +8,7 @@ from datetime import date, datetime, timedelta
8
8
  from odoo import Command, fields
9
9
  from odoo.exceptions import UserError, ValidationError
10
10
  from odoo.tests import Form, tagged
11
+ from odoo.tools import mute_logger
11
12
 
12
13
  from odoo.addons.account.tests.common import AccountTestInvoicingCommon
13
14
 
@@ -217,6 +218,7 @@ class TestPaymentOrderOutbound(TestPaymentOrderOutboundBase):
217
218
  active_model="account.move", active_ids=self.invoice.ids
218
219
  ).create({}).run()
219
220
 
221
+ @mute_logger("odoo.models.unlink")
220
222
  def test_cancel_payment_order(self):
221
223
  # Open invoice
222
224
  self.invoice.action_post()
@@ -250,6 +252,7 @@ class TestPaymentOrderOutbound(TestPaymentOrderOutboundBase):
250
252
  payment_order.unlink()
251
253
  self.assertEqual(len(self.env["account.payment.order"].search(self.domain)), 0)
252
254
 
255
+ @mute_logger("odoo.models.unlink")
253
256
  def test_creation_in_receipt(self):
254
257
  self.receipt.action_post()
255
258
  # Make sure no others orders are present
@@ -307,6 +310,7 @@ class TestPaymentOrderOutbound(TestPaymentOrderOutboundBase):
307
310
  "F1242", self.invoice._get_payment_order_communication_direct()
308
311
  )
309
312
 
313
+ @mute_logger("odoo.models.unlink")
310
314
  def test_invoice_communication_03(self):
311
315
  self.invoice.ref = False
312
316
  self.invoice.action_post()
@@ -383,6 +387,7 @@ class TestPaymentOrderOutbound(TestPaymentOrderOutboundBase):
383
387
  fields.Date.context_today(outbound_order),
384
388
  )
385
389
 
390
+ @mute_logger("odoo.models.unlink")
386
391
  def test_supplier_refund(self):
387
392
  """
388
393
  Confirm the supplier invoice
@@ -418,6 +423,7 @@ class TestPaymentOrderOutbound(TestPaymentOrderOutboundBase):
418
423
 
419
424
  self.assertEqual("F1242 R1234", payment_order.payment_line_ids.communication)
420
425
 
426
+ @mute_logger("odoo.models.unlink")
421
427
  def test_supplier_refund_reference(self):
422
428
  """
423
429
  Confirm the supplier invoice
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_payment_order
3
- Version: 18.0.1.2.1.2
3
+ Version: 18.0.1.2.2.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-account_payment_partner==18.0.*
6
6
  Requires-Dist: odoo==18.0.*
@@ -29,7 +29,7 @@ Account Payment Order
29
29
  !! This file is generated by oca-gen-addon-readme !!
30
30
  !! changes will be overwritten. !!
31
31
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
32
- !! source digest: sha256:6a01ec02f02f7416e5ab3c5a579b4d345c477f62e6f8cb727eaf118417f3c1bc
32
+ !! source digest: sha256:2ce90a207180781d129a58398eab1dc58fb2d2da3526a1db9994da3ca322c792
33
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
34
 
35
35
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
@@ -1,6 +1,6 @@
1
- odoo/addons/account_payment_order/README.rst,sha256=d2Icmw2AQImOjTjW9DrATpIT2FOe81rSxOqqEoW4RYg,4827
1
+ odoo/addons/account_payment_order/README.rst,sha256=mjKpgse-RW1KYvVGqPZaEr-0xhfDBeBFVH4NIyp07Fo,4827
2
2
  odoo/addons/account_payment_order/__init__.py,sha256=HVXFv0Gbl3gl3fcRBZhi3rlZgriQVo_8LiEgUjtkcFs,96
3
- odoo/addons/account_payment_order/__manifest__.py,sha256=AvY6J9tQbj5eWd6Fa1UNt2BOIA2AlZUf1EBiG8sIW4o,1606
3
+ odoo/addons/account_payment_order/__manifest__.py,sha256=Qv0tG5xCwfV7iePvtBHQ8BDdPj5qwIoGnU49qCZMcj8,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
@@ -11,7 +11,7 @@ odoo/addons/account_payment_order/i18n/ca.po,sha256=V5k_ubzaStMwy1BcO4eQf9QIW4Py
11
11
  odoo/addons/account_payment_order/i18n/ca_ES.po,sha256=l2iFzO5aQHeObcMYpbEd8gGK23BhUUc9s927QzGz-QQ,48976
12
12
  odoo/addons/account_payment_order/i18n/cs.po,sha256=XHWS6vzcp3CSP5QFAlQF_F-HVDcoe0hornuiSqDV-x0,49237
13
13
  odoo/addons/account_payment_order/i18n/da_DK.po,sha256=OmZh0a_rkU7w7bfCYA_3C_0Wsn53pVd07xUkrPseVTs,49958
14
- odoo/addons/account_payment_order/i18n/de.po,sha256=5mv4LRk5rSck2bhCHs-nxk0JEtMU8AVyIy6ixQj3BY4,54699
14
+ odoo/addons/account_payment_order/i18n/de.po,sha256=p2SAeQtBiU3UXiyTgPz5__DAfnehipHMtLKF39vyKOQ,54776
15
15
  odoo/addons/account_payment_order/i18n/el_GR.po,sha256=f2TP4sXovH22NfqTbh3zZjLsiSmi-haHmQ4k9wiOR3Y,49474
16
16
  odoo/addons/account_payment_order/i18n/es.po,sha256=h4sy9tgJ5pd_-9q-ZNSZahXs-uCTWU2YrjyfM68e_bo,57820
17
17
  odoo/addons/account_payment_order/i18n/es_AR.po,sha256=u0jybCQa4DreSYcxLKhBgwRqb1rJT_1p06speErtWn8,62849
@@ -67,13 +67,13 @@ odoo/addons/account_payment_order/report/print_account_payment_order.xml,sha256=
67
67
  odoo/addons/account_payment_order/security/ir.model.access.csv,sha256=eRNTXBrqKQh6WtYxY3ubNJtIQwZI2xWx-PdFpgtRxJ8,1552
68
68
  odoo/addons/account_payment_order/security/payment_security.xml,sha256=CcCo7CMZh-4lVxmw4YNz8yGskFmIhsKXukAj9mWxIJA,1202
69
69
  odoo/addons/account_payment_order/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
70
- odoo/addons/account_payment_order/static/description/index.html,sha256=Xj57cXE3As37t5jcALCJWIlVmnG3KCslBaJk39Fc0g8,16269
70
+ odoo/addons/account_payment_order/static/description/index.html,sha256=PaMANapTS_zYpWcPHnYLVJtZTluL84RgjN-3Wmcl9KY,16269
71
71
  odoo/addons/account_payment_order/tests/__init__.py,sha256=lOx5jg7LBTMs0mXira6LpqK_dNDUbPa5nViWWAug7xc,174
72
72
  odoo/addons/account_payment_order/tests/test_account_payment.py,sha256=CfF1wbrljRBEhvF1KyIzclmWMQT2TD1MkPSt-PVn42o,5117
73
73
  odoo/addons/account_payment_order/tests/test_bank.py,sha256=NsBI4a58LANtwCNgg_Ds08DR9Zy96Q6RNZ26Xy7-0Fc,961
74
74
  odoo/addons/account_payment_order/tests/test_payment_mode.py,sha256=Wy0tT6pIOVCNAayhaHdvCazpJoJJYeT8xtW1pOtqcOk,3156
75
- odoo/addons/account_payment_order/tests/test_payment_order_inbound.py,sha256=ev3Adl44-ioG3eTALCtvyolDiaB7A6ReD_7-GWZnIDw,8991
76
- odoo/addons/account_payment_order/tests/test_payment_order_outbound.py,sha256=HsB4gp7cflU6No55j2iwpgdIZkwjG9avrDHANL2AW-o,20575
75
+ odoo/addons/account_payment_order/tests/test_payment_order_inbound.py,sha256=4p5-16L8z55Hk1m8gMwjrp_ZQET--RvzhRjib1vHbWw,9104
76
+ odoo/addons/account_payment_order/tests/test_payment_order_outbound.py,sha256=Ej8cFM730pTKHzteN_8CPNg9VskqUP9vwLAT2NGf4DA,20805
77
77
  odoo/addons/account_payment_order/views/account_invoice_view.xml,sha256=RAJXIhL7NnnMy2zu5HXMGA7PzJtaOpNZKvQ2SOX8boA,4693
78
78
  odoo/addons/account_payment_order/views/account_move_line.xml,sha256=6u5Tn1sDgJIZias7bWsTN_wY3uYnvhIcdNDBYxljUaM,1776
79
79
  odoo/addons/account_payment_order/views/account_payment_line.xml,sha256=hJ-LFSH0yo-5vA81XMqz67gtg_h3zEvRQvAJ9BHB68E,4864
@@ -89,7 +89,7 @@ odoo/addons/account_payment_order/wizard/account_payment_line_create.py,sha256=t
89
89
  odoo/addons/account_payment_order/wizard/account_payment_line_create_view.xml,sha256=VMUDW0xs3xaivsCwDI8kFLGQzN2NsRp39TgbOIjZiPQ,4132
90
90
  odoo/addons/account_payment_order/wizard/account_payment_update.py,sha256=rn_wvjvSGlBxC6FLXSbPrwW_PcB34Ncrf7Y4LABtcY4,502
91
91
  odoo/addons/account_payment_order/wizard/account_payment_update_views.xml,sha256=_L686GyDuGvvzWL0ECQTOSWkUuS0pedORZR9KH4ff4U,977
92
- odoo_addon_account_payment_order-18.0.1.2.1.2.dist-info/METADATA,sha256=b2FCxxoRDlqdQC5K-GFUNeIcdGG5PclROsEYqyKhZH8,5511
93
- odoo_addon_account_payment_order-18.0.1.2.1.2.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
94
- odoo_addon_account_payment_order-18.0.1.2.1.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
95
- odoo_addon_account_payment_order-18.0.1.2.1.2.dist-info/RECORD,,
92
+ odoo_addon_account_payment_order-18.0.1.2.2.1.dist-info/METADATA,sha256=CfYbCwjg8MJ8xLJNvI5z8PHORmlQpI1f3GBMhFV0gkA,5511
93
+ odoo_addon_account_payment_order-18.0.1.2.2.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
94
+ odoo_addon_account_payment_order-18.0.1.2.2.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
95
+ odoo_addon_account_payment_order-18.0.1.2.2.1.dist-info/RECORD,,