odoo-addon-account-commission 16.0.2.4.2.1__py3-none-any.whl → 16.0.2.5.0__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_commission/README.rst +6 -2
- odoo/addons/account_commission/__manifest__.py +2 -1
- odoo/addons/account_commission/i18n/account_commission.pot +12 -0
- odoo/addons/account_commission/models/account_move.py +22 -1
- odoo/addons/account_commission/static/description/index.html +18 -12
- odoo/addons/account_commission/tests/test_account_commission.py +33 -3
- odoo/addons/account_commission/wizards/commission_make_settle.py +10 -0
- odoo/addons/account_commission/wizards/commission_make_settle_views.xml +13 -0
- {odoo_addon_account_commission-16.0.2.4.2.1.dist-info → odoo_addon_account_commission-16.0.2.5.0.dist-info}/METADATA +7 -3
- {odoo_addon_account_commission-16.0.2.4.2.1.dist-info → odoo_addon_account_commission-16.0.2.5.0.dist-info}/RECORD +12 -11
- {odoo_addon_account_commission-16.0.2.4.2.1.dist-info → odoo_addon_account_commission-16.0.2.5.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_commission-16.0.2.4.2.1.dist-info → odoo_addon_account_commission-16.0.2.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
===================
|
|
2
6
|
Account commissions
|
|
3
7
|
===================
|
|
@@ -7,13 +11,13 @@ Account commissions
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:c59d19febb630cbe46de5e379d652d5eb3237844ebc57ee4542555c81045a75e
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Copyright 2014-2022 Tecnativa - Pedro M. Baeza
|
|
4
4
|
{
|
|
5
5
|
"name": "Account commissions",
|
|
6
|
-
"version": "16.0.2.
|
|
6
|
+
"version": "16.0.2.5.0",
|
|
7
7
|
"author": "Tecnativa, Odoo Community Association (OCA)",
|
|
8
8
|
"category": "Sales Management",
|
|
9
9
|
"license": "AGPL-3",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"views/report_settlement_templates.xml",
|
|
24
24
|
"report/commission_analysis_view.xml",
|
|
25
25
|
"wizards/wizard_invoice.xml",
|
|
26
|
+
"wizards/commission_make_settle_views.xml",
|
|
26
27
|
],
|
|
27
28
|
"installable": True,
|
|
28
29
|
}
|
|
@@ -210,6 +210,13 @@ msgstr ""
|
|
|
210
210
|
msgid "Extended Filters"
|
|
211
211
|
msgstr ""
|
|
212
212
|
|
|
213
|
+
#. module: account_commission
|
|
214
|
+
#: model:ir.model.fields,help:account_commission.field_commission_make_settle__date_payment_to
|
|
215
|
+
msgid ""
|
|
216
|
+
"For payment-based commissions, settlements will be created for payments"
|
|
217
|
+
" with date up to the one set in this field."
|
|
218
|
+
msgstr ""
|
|
219
|
+
|
|
213
220
|
#. module: account_commission
|
|
214
221
|
#: model:ir.model.fields,field_description:account_commission.field_commission_make_invoice__from_settlement
|
|
215
222
|
msgid "From Settlement"
|
|
@@ -390,6 +397,11 @@ msgstr ""
|
|
|
390
397
|
msgid "Payment Based"
|
|
391
398
|
msgstr ""
|
|
392
399
|
|
|
400
|
+
#. module: account_commission
|
|
401
|
+
#: model:ir.model.fields,field_description:account_commission.field_commission_make_settle__date_payment_to
|
|
402
|
+
msgid "Payment date up to"
|
|
403
|
+
msgstr ""
|
|
404
|
+
|
|
393
405
|
#. module: account_commission
|
|
394
406
|
#: model:ir.model.fields,field_description:account_commission.field_invoice_commission_analysis_report__percentage
|
|
395
407
|
msgid "Percentage of commission"
|
|
@@ -251,7 +251,28 @@ class AccountInvoiceLineAgent(models.Model):
|
|
|
251
251
|
:return: bool
|
|
252
252
|
"""
|
|
253
253
|
self.ensure_one()
|
|
254
|
+
payment_based_commission = self.commission_id.invoice_state == "paid"
|
|
255
|
+
if payment_based_commission and self._skip_future_payments():
|
|
256
|
+
return True
|
|
254
257
|
return (
|
|
255
|
-
|
|
258
|
+
payment_based_commission
|
|
256
259
|
and self.invoice_id.payment_state not in ["in_payment", "paid", "reversed"]
|
|
257
260
|
) or self.invoice_id.state != "posted"
|
|
261
|
+
|
|
262
|
+
def _skip_future_payments(self):
|
|
263
|
+
date_payment_to = self.env.context.get("date_payment_to")
|
|
264
|
+
if date_payment_to:
|
|
265
|
+
payments_dates = []
|
|
266
|
+
(
|
|
267
|
+
invoice_partials,
|
|
268
|
+
exchange_diff_moves,
|
|
269
|
+
) = self.invoice_id._get_reconciled_invoices_partials()
|
|
270
|
+
for (
|
|
271
|
+
_partial,
|
|
272
|
+
_amount,
|
|
273
|
+
counterpart_line,
|
|
274
|
+
) in invoice_partials:
|
|
275
|
+
payments_dates.append(counterpart_line.date)
|
|
276
|
+
if any(date_payment_to < date for date in payments_dates):
|
|
277
|
+
return True
|
|
278
|
+
return False
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Account commissions</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="account-commissions">
|
|
370
|
+
<h1>Account commissions</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:c59d19febb630cbe46de5e379d652d5eb3237844ebc57ee4542555c81045a75e
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
|
-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/
|
|
377
|
+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/commission/tree/16.0/account_commission"><img alt="OCA/commission" src="https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/commission-16-0/commission-16-0-account_commission"><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/commission&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module adds the function to calculate commissions in invoices (account moves).</p>
|
|
374
379
|
<p>It also allows to create vendor bills from settlements for external agents.</p>
|
|
375
380
|
<p>This module depends on the commission module.</p>
|
|
@@ -388,7 +393,7 @@ ul.auto-toc {
|
|
|
388
393
|
</ul>
|
|
389
394
|
</div>
|
|
390
395
|
<div class="section" id="configuration">
|
|
391
|
-
<
|
|
396
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
392
397
|
<p>For selecting invoice status in commissions:</p>
|
|
393
398
|
<ol class="arabic simple">
|
|
394
399
|
<li>Edit or create a new record to select the invoice status for settling the commissions.<ul>
|
|
@@ -401,7 +406,7 @@ be settled as well, resulting in a 0 net commission between both operations.</li
|
|
|
401
406
|
</ol>
|
|
402
407
|
</div>
|
|
403
408
|
<div class="section" id="usage">
|
|
404
|
-
<
|
|
409
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
|
|
405
410
|
<p>For adding commissions on invoices:</p>
|
|
406
411
|
<ol class="arabic simple">
|
|
407
412
|
<li>Go to <em>Invoicing > Customers > Invoices</em>.</li>
|
|
@@ -443,7 +448,7 @@ button.</li>
|
|
|
443
448
|
</ol>
|
|
444
449
|
</div>
|
|
445
450
|
<div class="section" id="bug-tracker">
|
|
446
|
-
<
|
|
451
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
|
|
447
452
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/commission/issues">GitHub Issues</a>.
|
|
448
453
|
In case of trouble, please check there if your issue has already been reported.
|
|
449
454
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -451,15 +456,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
451
456
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
452
457
|
</div>
|
|
453
458
|
<div class="section" id="credits">
|
|
454
|
-
<
|
|
459
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
|
|
455
460
|
<div class="section" id="authors">
|
|
456
|
-
<
|
|
461
|
+
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
|
|
457
462
|
<ul class="simple">
|
|
458
463
|
<li>Tecnativa</li>
|
|
459
464
|
</ul>
|
|
460
465
|
</div>
|
|
461
466
|
<div class="section" id="contributors">
|
|
462
|
-
<
|
|
467
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
|
|
463
468
|
<ul class="simple">
|
|
464
469
|
<li>Pexego.</li>
|
|
465
470
|
<li>Davide Corio <<a class="reference external" href="mailto:davide.corio@domsense.com">davide.corio@domsense.com</a>></li>
|
|
@@ -489,7 +494,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
489
494
|
</ul>
|
|
490
495
|
</div>
|
|
491
496
|
<div class="section" id="maintainers">
|
|
492
|
-
<
|
|
497
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
|
|
493
498
|
<p>This module is maintained by the OCA.</p>
|
|
494
499
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
495
500
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -504,5 +509,6 @@ promote its widespread use.</p>
|
|
|
504
509
|
</div>
|
|
505
510
|
</div>
|
|
506
511
|
</div>
|
|
512
|
+
</div>
|
|
507
513
|
</body>
|
|
508
514
|
</html>
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
# Copyright 2016-2022 Tecnativa - Pedro M. Baeza
|
|
4
4
|
# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html
|
|
5
5
|
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
|
|
6
8
|
from dateutil.relativedelta import relativedelta
|
|
7
9
|
|
|
8
10
|
from odoo import fields
|
|
@@ -86,9 +88,12 @@ class TestAccountCommission(TestCommissionBase):
|
|
|
86
88
|
vals.update({"currency_id": currency.id})
|
|
87
89
|
return self.env["account.move"].create([vals])
|
|
88
90
|
|
|
89
|
-
def _settle_agent_invoice(
|
|
91
|
+
def _settle_agent_invoice(
|
|
92
|
+
self, agent=None, period=None, date=None, date_payment_to=None
|
|
93
|
+
):
|
|
90
94
|
vals = self._get_make_settle_vals(agent, period, date)
|
|
91
95
|
vals["settlement_type"] = "sale_invoice"
|
|
96
|
+
vals["date_payment_to"] = date_payment_to
|
|
92
97
|
wizard = self.make_settle_model.create(vals)
|
|
93
98
|
wizard.action_settle()
|
|
94
99
|
|
|
@@ -660,7 +665,7 @@ class TestAccountCommission(TestCommissionBase):
|
|
|
660
665
|
self.assertEqual(3, len(settlements.line_ids))
|
|
661
666
|
self.assertAlmostEqual(0.6, sum(settlements.mapped("total")), 2)
|
|
662
667
|
|
|
663
|
-
def _register_payment(self, invoice):
|
|
668
|
+
def _register_payment(self, invoice, date=None):
|
|
664
669
|
payment_journal = self.env["account.journal"].search(
|
|
665
670
|
[("type", "=", "cash"), ("company_id", "=", self.env.company.id)],
|
|
666
671
|
limit=1,
|
|
@@ -668,7 +673,12 @@ class TestAccountCommission(TestCommissionBase):
|
|
|
668
673
|
register_payments = (
|
|
669
674
|
self.env["account.payment.register"]
|
|
670
675
|
.with_context(active_ids=invoice.id, active_model="account.move")
|
|
671
|
-
.create(
|
|
676
|
+
.create(
|
|
677
|
+
{
|
|
678
|
+
"journal_id": payment_journal.id,
|
|
679
|
+
"payment_date": date or datetime.now(),
|
|
680
|
+
}
|
|
681
|
+
)
|
|
672
682
|
)
|
|
673
683
|
register_payments.action_create_payments()
|
|
674
684
|
|
|
@@ -694,3 +704,23 @@ class TestAccountCommission(TestCommissionBase):
|
|
|
694
704
|
self._settle_agent_invoice(self.agent_pending, 1)
|
|
695
705
|
settlements = self.settle_model.search([("state", "=", "settled")])
|
|
696
706
|
self.assertEqual(len(settlements.line_ids), 3)
|
|
707
|
+
|
|
708
|
+
def test_payment_date_settlement(self):
|
|
709
|
+
date = fields.Date.today()
|
|
710
|
+
|
|
711
|
+
invoice_after_cutoff = self._create_invoice(
|
|
712
|
+
self.agent_monthly, self.commission_net_paid
|
|
713
|
+
)
|
|
714
|
+
invoice_after_cutoff.invoice_line_ids.agent_ids._compute_amount()
|
|
715
|
+
invoice = self._create_invoice(self.agent_monthly, self.commission_net_paid)
|
|
716
|
+
invoice.invoice_line_ids.agent_ids._compute_amount()
|
|
717
|
+
(invoice_after_cutoff + invoice).action_post()
|
|
718
|
+
|
|
719
|
+
# Payment after the wizard payment date, not included in the settlement
|
|
720
|
+
self._register_payment(invoice_after_cutoff, date + relativedelta(days=2))
|
|
721
|
+
# Payment before the wizard payment date, not included in the settlement
|
|
722
|
+
self._register_payment(invoice, date - relativedelta(days=2))
|
|
723
|
+
self._settle_agent_invoice(self.agent_monthly, 1, date_payment_to=date)
|
|
724
|
+
settlements = self.settle_model.search([("state", "=", "settled")])
|
|
725
|
+
self.assertEqual(1, len(settlements))
|
|
726
|
+
self.assertEqual(1, len(settlements.line_ids))
|
|
@@ -13,6 +13,12 @@ class CommissionMakeSettle(models.TransientModel):
|
|
|
13
13
|
selection_add=[("sale_invoice", "Sales Invoices")],
|
|
14
14
|
ondelete={"sale_invoice": "cascade"},
|
|
15
15
|
)
|
|
16
|
+
date_payment_to = fields.Date(
|
|
17
|
+
"Payment date up to",
|
|
18
|
+
help="For payment-based commissions, settlements will be created for payments \
|
|
19
|
+
with date up to the one set in this field.",
|
|
20
|
+
default=fields.Date.today,
|
|
21
|
+
)
|
|
16
22
|
|
|
17
23
|
def _get_account_settle_domain(self, agent, date_to_agent):
|
|
18
24
|
return [
|
|
@@ -46,3 +52,7 @@ class CommissionMakeSettle(models.TransientModel):
|
|
|
46
52
|
}
|
|
47
53
|
)
|
|
48
54
|
return res
|
|
55
|
+
|
|
56
|
+
def action_settle(self):
|
|
57
|
+
self = self.with_context(date_payment_to=self.date_payment_to)
|
|
58
|
+
return super().action_settle()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<odoo>
|
|
3
|
+
<record id="view_commission_make_settle_date_payment" model="ir.ui.view">
|
|
4
|
+
<field name="name">commission.make.settle.date.payment</field>
|
|
5
|
+
<field name="model">commission.make.settle</field>
|
|
6
|
+
<field name="inherit_id" ref="commission.view_settled_wizard" />
|
|
7
|
+
<field name="arch" type="xml">
|
|
8
|
+
<field name="date_to" position="after">
|
|
9
|
+
<field name="date_payment_to" />
|
|
10
|
+
</field>
|
|
11
|
+
</field>
|
|
12
|
+
</record>
|
|
13
|
+
</odoo>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_commission
|
|
3
|
-
Version: 16.0.2.
|
|
3
|
+
Version: 16.0.2.5.0
|
|
4
4
|
Summary: Account commissions
|
|
5
5
|
Home-page: https://github.com/OCA/commission
|
|
6
6
|
Author: Tecnativa, Odoo Community Association (OCA)
|
|
@@ -14,6 +14,10 @@ Requires-Python: >=3.10
|
|
|
14
14
|
Requires-Dist: odoo-addon-commission<16.1dev,>=16.0dev
|
|
15
15
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
16
16
|
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
19
|
+
:alt: Odoo Community Association
|
|
20
|
+
|
|
17
21
|
===================
|
|
18
22
|
Account commissions
|
|
19
23
|
===================
|
|
@@ -23,13 +27,13 @@ Account commissions
|
|
|
23
27
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
28
|
!! changes will be overwritten. !!
|
|
25
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
30
|
+
!! source digest: sha256:c59d19febb630cbe46de5e379d652d5eb3237844ebc57ee4542555c81045a75e
|
|
27
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
32
|
|
|
29
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
30
34
|
:target: https://odoo-community.org/page/development-status
|
|
31
35
|
:alt: Beta
|
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
33
37
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
34
38
|
:alt: License: AGPL-3
|
|
35
39
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
odoo/addons/account_commission/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_commission/README.rst,sha256=7CRlVmg-pS0mCf4klLv3P4Js6j7I8FNeT3b1QxoYvKg,6326
|
|
2
2
|
odoo/addons/account_commission/__init__.py,sha256=8JG3SPnwMlgXTppOwkp3YTgDDQGo7U7veMEMpG1bL_c,64
|
|
3
|
-
odoo/addons/account_commission/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_commission/__manifest__.py,sha256=KqPM9BBDCN7StMw2wXLQjDD__6Zx10kSbxIKlNdYmJw,945
|
|
4
4
|
odoo/addons/account_commission/data/menuitem_data.xml,sha256=OX8KpilSn3zWf9cMNiJLDO7aV_vtaH6GTIyMZWDxYqM,361
|
|
5
|
-
odoo/addons/account_commission/i18n/account_commission.pot,sha256=
|
|
5
|
+
odoo/addons/account_commission/i18n/account_commission.pot,sha256=SnF-9UtFGizmgRYJa8tPqjE5bDeigee_ESc0E83bJdw,22422
|
|
6
6
|
odoo/addons/account_commission/i18n/es.po,sha256=LpIYITZRhwsIS9g0vHTFn2y9UQB42-LtKtD9ZKEWOJ8,25330
|
|
7
7
|
odoo/addons/account_commission/i18n/fr.po,sha256=GjfNCbyouAIQ4InWglax2zcs3P17BALNJWmw-xbNkcA,24822
|
|
8
8
|
odoo/addons/account_commission/i18n/hr.po,sha256=fotrWfKSA3Y7s8tge3UnkmwrlhM67nOOrigouGlauZA,22119
|
|
@@ -12,7 +12,7 @@ odoo/addons/account_commission/i18n/pt.po,sha256=83MR5lys6a8oRodMzS281ZWPj1bxg8G
|
|
|
12
12
|
odoo/addons/account_commission/i18n/pt_BR.po,sha256=r9XZOLIDWDr-iqm4tUoySIOGuPXXj2Ob0MVdMjjIpEs,24842
|
|
13
13
|
odoo/addons/account_commission/i18n/tr.po,sha256=37k7M4oibBRneT4JTgiEEakIebFs7GFsVFlDdLhK1lk,24331
|
|
14
14
|
odoo/addons/account_commission/models/__init__.py,sha256=NAnZVtdmEwISK51Ipnoin5jHE3_bVPLsNghvuFcM3NI,88
|
|
15
|
-
odoo/addons/account_commission/models/account_move.py,sha256=
|
|
15
|
+
odoo/addons/account_commission/models/account_move.py,sha256=mueEa0ggihbON9o7KlOc3pcMYiJbyI8RK79dCSKA-Z4,9988
|
|
16
16
|
odoo/addons/account_commission/models/commission.py,sha256=OHzmB5iH-h4oQf5JQGV4EFpNOkAHxC1_0-j0g-8nDXE,576
|
|
17
17
|
odoo/addons/account_commission/models/commission_settlement.py,sha256=0E4xBJAUGyeAjDkhv4BwlpT4JigYDjOppfXuspynl4Q,7197
|
|
18
18
|
odoo/addons/account_commission/readme/CONFIGURE.rst,sha256=vUEhtDTSXiZc88gXBuQZIcSkM3CbkmzQQwdVgJfnbSA,466
|
|
@@ -26,18 +26,19 @@ odoo/addons/account_commission/security/account_commission_security.xml,sha256=p
|
|
|
26
26
|
odoo/addons/account_commission/security/ir.model.access.csv,sha256=c0k8cFhVg1A4XCaUQ-mzJdLIotKKt1ltIYznK8ELhYE,883
|
|
27
27
|
odoo/addons/account_commission/static/description/icon.png,sha256=ydxSIUuHSeE4CfMVsEzLjKKVdX4RicuPj8VGM2rBpBg,8219
|
|
28
28
|
odoo/addons/account_commission/static/description/icon.svg,sha256=96b_cQ-F1XuDU6S5mDi9ioe0d22Vwn30uBDQ_3ZSi5w,17220
|
|
29
|
-
odoo/addons/account_commission/static/description/index.html,sha256=
|
|
29
|
+
odoo/addons/account_commission/static/description/index.html,sha256=zcR4SFzAUITG_tgvp8sqHSNh2aSyC_qrZv3923tTdRQ,17391
|
|
30
30
|
odoo/addons/account_commission/tests/__init__.py,sha256=bxd564RH-TWEpEJWbbc558dPFEJZCsH9JM8JF3-PMUM,38
|
|
31
|
-
odoo/addons/account_commission/tests/test_account_commission.py,sha256=
|
|
31
|
+
odoo/addons/account_commission/tests/test_account_commission.py,sha256=sKAItw4ZUk8IC7pbqLU6y5f1oMgRAqoGhl924qozvcs,30029
|
|
32
32
|
odoo/addons/account_commission/views/account_move_views.xml,sha256=N6PGXNMSxgpwaz5HtydDTRX0stu3QzTX5vBICCksP9s,6600
|
|
33
33
|
odoo/addons/account_commission/views/commission_settlement_views.xml,sha256=JG5sX13R5jdB79m1Pub2rwqhM1s3Kux3btXAbgv_sFk,3496
|
|
34
34
|
odoo/addons/account_commission/views/commission_views.xml,sha256=oY2-WJ-lEn3gCoFMqStKObGT3LRkBxMmANm2MRhYuRE,614
|
|
35
35
|
odoo/addons/account_commission/views/report_settlement_templates.xml,sha256=ypyl80zXsb0QxjgV14QTP1hwSnLWs-_B_OzlzZs431w,1581
|
|
36
36
|
odoo/addons/account_commission/wizards/__init__.py,sha256=ddwjnl0fpZTw56iNQmRcDJ0Q1RfptMC23XtvW93Ofec,66
|
|
37
|
-
odoo/addons/account_commission/wizards/commission_make_settle.py,sha256=
|
|
37
|
+
odoo/addons/account_commission/wizards/commission_make_settle.py,sha256=BTZIy9Z8Ic93okcYzBqvEV5uA71Qis3AzAnUv7thoJw,2108
|
|
38
|
+
odoo/addons/account_commission/wizards/commission_make_settle_views.xml,sha256=ONG4xseHOg3Ssy3ZBw-xgLDwPizulwNCWQfZGyuBFVE,528
|
|
38
39
|
odoo/addons/account_commission/wizards/wizard_invoice.py,sha256=SumDW3606uLS4d6L2rKjQbwdvfmIYovKark-EUMTve0,3162
|
|
39
40
|
odoo/addons/account_commission/wizards/wizard_invoice.xml,sha256=Afx90Mccl0EjLzZ2dJa2dOikYhWxIY5tQ7objmca8gc,2292
|
|
40
|
-
odoo_addon_account_commission-16.0.2.
|
|
41
|
-
odoo_addon_account_commission-16.0.2.
|
|
42
|
-
odoo_addon_account_commission-16.0.2.
|
|
43
|
-
odoo_addon_account_commission-16.0.2.
|
|
41
|
+
odoo_addon_account_commission-16.0.2.5.0.dist-info/METADATA,sha256=QR6UKqsm-E1uS-Ho5dSicJ0XvtwEMt_b6bjwy9q55gs,6890
|
|
42
|
+
odoo_addon_account_commission-16.0.2.5.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
43
|
+
odoo_addon_account_commission-16.0.2.5.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
44
|
+
odoo_addon_account_commission-16.0.2.5.0.dist-info/RECORD,,
|
|
File without changes
|