odoo-addon-account-credit-control 16.0.2.0.1__py3-none-any.whl → 16.0.2.0.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_credit_control/README.rst +1 -1
- odoo/addons/account_credit_control/__manifest__.py +1 -1
- odoo/addons/account_credit_control/models/credit_control_communication.py +7 -4
- odoo/addons/account_credit_control/report/report_credit_control_summary.xml +11 -6
- odoo/addons/account_credit_control/static/description/index.html +1 -1
- odoo/addons/account_credit_control/views/credit_control_line.xml +2 -0
- {odoo_addon_account_credit_control-16.0.2.0.1.dist-info → odoo_addon_account_credit_control-16.0.2.0.2.dist-info}/METADATA +2 -2
- {odoo_addon_account_credit_control-16.0.2.0.1.dist-info → odoo_addon_account_credit_control-16.0.2.0.2.dist-info}/RECORD +10 -10
- {odoo_addon_account_credit_control-16.0.2.0.1.dist-info → odoo_addon_account_credit_control-16.0.2.0.2.dist-info}/WHEEL +0 -0
- {odoo_addon_account_credit_control-16.0.2.0.1.dist-info → odoo_addon_account_credit_control-16.0.2.0.2.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ Account Credit Control
|
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
12
12
|
!! changes will be overwritten. !!
|
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:883f277e1e015a5eb8f3165f5abe9a6ce4677faf87c830163b781451f04e8aed
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -188,14 +188,17 @@ class CreditControlCommunication(models.Model):
|
|
|
188
188
|
table_content = "<br/><h3>%s</h3>" % _("Invoices summary")
|
|
189
189
|
table_content += "<table style='%s'><tr>%s</tr>" % (table_style, tr_content)
|
|
190
190
|
for line in self.credit_control_line_ids:
|
|
191
|
-
|
|
191
|
+
name = line.invoice_id.name
|
|
192
|
+
if line.move_line_id.ref and line.move_line_id.ref != name:
|
|
193
|
+
name += f" ({line.move_line_id.ref})"
|
|
194
|
+
tr_content = "<td style='%s'>%s</td>" % (th_style, name)
|
|
192
195
|
tr_content += "<td style='%s'>%s</td>" % (
|
|
193
196
|
th_style,
|
|
194
197
|
line.invoice_id.payment_reference or "",
|
|
195
198
|
)
|
|
196
199
|
tr_content += "<td style='%s'>%s</td>" % (
|
|
197
200
|
th_style,
|
|
198
|
-
format_date(self.env, line.
|
|
201
|
+
format_date(self.env, line.date_entry),
|
|
199
202
|
)
|
|
200
203
|
tr_content += "<td style='%s'>%s</td>" % (
|
|
201
204
|
th_style,
|
|
@@ -203,11 +206,11 @@ class CreditControlCommunication(models.Model):
|
|
|
203
206
|
)
|
|
204
207
|
tr_content += "<td style='%s'>%s</td>" % (
|
|
205
208
|
th_style,
|
|
206
|
-
format_amount(self.env, line.
|
|
209
|
+
format_amount(self.env, line.amount_due, line.currency_id),
|
|
207
210
|
)
|
|
208
211
|
tr_content += "<td style='%s'>%s</td>" % (
|
|
209
212
|
th_style,
|
|
210
|
-
format_amount(self.env, line.
|
|
213
|
+
format_amount(self.env, line.balance_due, line.currency_id),
|
|
211
214
|
)
|
|
212
215
|
table_content += "<tr>%s</tr>" % tr_content
|
|
213
216
|
table_content += "</table>"
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
<th>Invoice number</th>
|
|
32
32
|
<th>Invoice date</th>
|
|
33
33
|
<th>Date due</th>
|
|
34
|
-
<th class="text-
|
|
35
|
-
<th class="text-
|
|
34
|
+
<th class="text-end">Invoiced amount</th>
|
|
35
|
+
<th class="text-end">Open amount</th>
|
|
36
36
|
</tr>
|
|
37
37
|
</thead>
|
|
38
38
|
<tbody>
|
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
<t t-if="l.invoice_id">
|
|
41
41
|
<td>
|
|
42
42
|
<span t-field="l.invoice_id.name" />
|
|
43
|
+
<t
|
|
44
|
+
t-if="l.move_line_id.ref and l.move_line_id.ref!=l.invoice_id.name"
|
|
45
|
+
>
|
|
46
|
+
(<span t-field="l.move_line_id.ref" />)
|
|
47
|
+
</t>
|
|
43
48
|
</td>
|
|
44
49
|
</t>
|
|
45
50
|
<t t-if="not l.invoice_id">
|
|
@@ -53,13 +58,13 @@
|
|
|
53
58
|
<td>
|
|
54
59
|
<span t-field="l.date_due" />
|
|
55
60
|
</td>
|
|
56
|
-
<td class="text-
|
|
61
|
+
<td class="text-end">
|
|
57
62
|
<span
|
|
58
63
|
t-field="l.amount_due"
|
|
59
64
|
t-options="{'widget': 'monetary', 'display_currency': l.currency_id or l.company_id.currency_id}"
|
|
60
65
|
/>
|
|
61
66
|
</td>
|
|
62
|
-
<td class="text-
|
|
67
|
+
<td class="text-end">
|
|
63
68
|
<span
|
|
64
69
|
t-field="l.balance_due"
|
|
65
70
|
t-options="{'widget': 'monetary', 'display_currency': l.currency_id or l.company_id.currency_id}"
|
|
@@ -77,7 +82,7 @@
|
|
|
77
82
|
<td>
|
|
78
83
|
<strong>Total Invoiced</strong>
|
|
79
84
|
</td>
|
|
80
|
-
<td class="text-
|
|
85
|
+
<td class="text-end">
|
|
81
86
|
<span
|
|
82
87
|
t-field="doc.total_invoiced"
|
|
83
88
|
t-options="{'widget': 'monetary', 'display_currency': doc.currency_id}"
|
|
@@ -88,7 +93,7 @@
|
|
|
88
93
|
<td>
|
|
89
94
|
<strong>Total Due</strong>
|
|
90
95
|
</td>
|
|
91
|
-
<td class="text-
|
|
96
|
+
<td class="text-end">
|
|
92
97
|
<span
|
|
93
98
|
t-field="doc.total_due"
|
|
94
99
|
t-options="{'widget': 'monetary', 'display_currency': doc.currency_id}"
|
|
@@ -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:
|
|
375
|
+
!! source digest: sha256:883f277e1e015a5eb8f3165f5abe9a6ce4677faf87c830163b781451f04e8aed
|
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
377
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/credit-control/tree/16.0/account_credit_control"><img alt="OCA/credit-control" src="https://img.shields.io/badge/github-OCA%2Fcredit--control-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/credit-control-16-0/credit-control-16-0-account_credit_control"><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/credit-control&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
378
378
|
<p>Account Credit Control module is a part of Financial Tools used in business to
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
</group>
|
|
24
24
|
<group>
|
|
25
25
|
<field name="date" />
|
|
26
|
+
<field name="date_entry" />
|
|
26
27
|
<field name="date_due" />
|
|
27
28
|
<field name="channel" />
|
|
28
29
|
<field name="date_sent" />
|
|
@@ -220,6 +221,7 @@
|
|
|
220
221
|
class="oe_stat_button"
|
|
221
222
|
/>
|
|
222
223
|
<field name="date" />
|
|
224
|
+
<field name="date_entry" />
|
|
223
225
|
<field name="date_due" />
|
|
224
226
|
<field name="level" />
|
|
225
227
|
<field name="manually_overridden" />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_credit_control
|
|
3
|
-
Version: 16.0.2.0.
|
|
3
|
+
Version: 16.0.2.0.2
|
|
4
4
|
Summary: Account Credit Control
|
|
5
5
|
Home-page: https://github.com/OCA/credit-control
|
|
6
6
|
Author: Camptocamp,Odoo Community Association (OCA),Okia,Access Bookings,Tecnativa,ACSONE SA/NV
|
|
@@ -26,7 +26,7 @@ Account Credit Control
|
|
|
26
26
|
!! This file is generated by oca-gen-addon-readme !!
|
|
27
27
|
!! changes will be overwritten. !!
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
|
-
!! source digest: sha256:
|
|
29
|
+
!! source digest: sha256:883f277e1e015a5eb8f3165f5abe9a6ce4677faf87c830163b781451f04e8aed
|
|
30
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
31
31
|
|
|
32
32
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_credit_control/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_credit_control/README.rst,sha256=uvMGqo7vlG13lRilwpjtcqclebdVEcLS4VgdQFvx9uo,5418
|
|
2
2
|
odoo/addons/account_credit_control/__init__.py,sha256=8MjrwJNjAjKy6j77I1529EUbQMh7TZ867lnz-KzifyI,127
|
|
3
|
-
odoo/addons/account_credit_control/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_credit_control/__manifest__.py,sha256=dwItNIKu_AJ59MFAFmp-V8DKqO0ywtmFkLiDIwGgh3s,1598
|
|
4
4
|
odoo/addons/account_credit_control/data/data.xml,sha256=MaEHpEGXmL0RoEuiXUlkv25KBtI9Edq-JLRA6kPjjhw,10574
|
|
5
5
|
odoo/addons/account_credit_control/demo/res_users.xml,sha256=KWDhrbbE4VTCHpkvFMu49yeLkGdwIson7hOkboR-0dE,372
|
|
6
6
|
odoo/addons/account_credit_control/i18n/account_credit_control.pot,sha256=5uMurMSNddbym9QT7-n6ctDDhE6CwAPIqpaeQOI0hBU,77708
|
|
@@ -83,7 +83,7 @@ odoo/addons/account_credit_control/i18n/zh_TW.po,sha256=YMsJzfrtHGW9OnO5f8lTWu71
|
|
|
83
83
|
odoo/addons/account_credit_control/models/__init__.py,sha256=sb3eOYTLCrhAigyAPEqvfhhTc5oSQoUOqCju7LhgeNI,404
|
|
84
84
|
odoo/addons/account_credit_control/models/account_account.py,sha256=k7A1hrH2xi-em9uvuBsYuAj-UviL1s_X7wK0GprbZI4,503
|
|
85
85
|
odoo/addons/account_credit_control/models/account_move.py,sha256=MzN_JSc7GcuDq3YsXOWs7pgk3e8Wt2QtFRlxifoUe24,2128
|
|
86
|
-
odoo/addons/account_credit_control/models/credit_control_communication.py,sha256=
|
|
86
|
+
odoo/addons/account_credit_control/models/credit_control_communication.py,sha256=3M0G1y6-EZa5jGDYb_fkWYhRPSZeOs04EbtJDeNSWVA,9424
|
|
87
87
|
odoo/addons/account_credit_control/models/credit_control_line.py,sha256=TmGzkXsMEHlQB1x-JWgf8mlnLgu5amgzB0-C3jBxV2c,10696
|
|
88
88
|
odoo/addons/account_credit_control/models/credit_control_policy.py,sha256=szRHlrfm3JAQnLMUryLmP85oNA562vQw717lvB8xZ-o,16503
|
|
89
89
|
odoo/addons/account_credit_control/models/credit_control_run.py,sha256=mi11fx9-T35hvk64DTYltFJhVKHevG7-ZwoxGXb0xmk,7578
|
|
@@ -100,11 +100,11 @@ odoo/addons/account_credit_control/report/__init__.py,sha256=5yWnkU7tiAw2FSJdD_Z
|
|
|
100
100
|
odoo/addons/account_credit_control/report/account_credit_control_analysis.py,sha256=8vQsYTugj_Msl1AFGC61cKZ7kDrUQVF4mh4XhQY6Z1o,3599
|
|
101
101
|
odoo/addons/account_credit_control/report/account_credit_control_analysis.xml,sha256=t6y2zGoxsfnT8HCyc2vnBbzBg6wk-wig9ZpaV1mIypA,2222
|
|
102
102
|
odoo/addons/account_credit_control/report/report.xml,sha256=ajgYqWfHp0Nz3jkSJY1ZV1EMTi8KLGT5QaondJwQq-s,622
|
|
103
|
-
odoo/addons/account_credit_control/report/report_credit_control_summary.xml,sha256
|
|
103
|
+
odoo/addons/account_credit_control/report/report_credit_control_summary.xml,sha256=-5ckNSzLXVfxJmBcLTYf_qoXWPHRHne56p53_vwpfOk,5806
|
|
104
104
|
odoo/addons/account_credit_control/security/account_security.xml,sha256=72GmbiYqrJBdjAap88o3k-g8Y76jM5CCIZbZc6_TGuY,4071
|
|
105
105
|
odoo/addons/account_credit_control/security/ir.model.access.csv,sha256=FgKzKdftXknPsreudq4NdvaGqxuUaVWWxGgmrfjHqRA,5531
|
|
106
106
|
odoo/addons/account_credit_control/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
107
|
-
odoo/addons/account_credit_control/static/description/index.html,sha256=
|
|
107
|
+
odoo/addons/account_credit_control/static/description/index.html,sha256=d4NevZ1cZZ11XoXIY2WBPu6jlUhjjnoEmuSg4qW07sY,16110
|
|
108
108
|
odoo/addons/account_credit_control/tests/__init__.py,sha256=ytdwXdWp6qfFDhN08R3rfI-w_AriEuONj3VSBV3Ztb0,206
|
|
109
109
|
odoo/addons/account_credit_control/tests/test_account_move.py,sha256=H62QDrGocrqHKK1ayf5DaUnerCo0_MHrFjgo__fdK68,11178
|
|
110
110
|
odoo/addons/account_credit_control/tests/test_credit_control_policy.py,sha256=IzBsyIf7iJXUP3jG3_T2yW6bKLJ4HbcvAuyfmC2Wui8,3210
|
|
@@ -112,7 +112,7 @@ odoo/addons/account_credit_control/tests/test_credit_control_run.py,sha256=ZogJG
|
|
|
112
112
|
odoo/addons/account_credit_control/tests/test_res_partner.py,sha256=GnQsu6T2suBp_44nJlUjTIYs3UNhrNpQWvuYgnWSz1U,1696
|
|
113
113
|
odoo/addons/account_credit_control/views/account_move.xml,sha256=gSoz9Zd0YAEQdfkIh8g1yqqw0XQWXy5kxa6tMVbj7G0,2145
|
|
114
114
|
odoo/addons/account_credit_control/views/credit_control_communication.xml,sha256=r9NzBXkV7qQia3698EjDc--F7Ay3LFY3nEmFwiFliGM,6821
|
|
115
|
-
odoo/addons/account_credit_control/views/credit_control_line.xml,sha256=
|
|
115
|
+
odoo/addons/account_credit_control/views/credit_control_line.xml,sha256=RL9wDZ8THDKQY1VTVska_AaZpoBLKOrwcQxfMZBc3SY,12074
|
|
116
116
|
odoo/addons/account_credit_control/views/credit_control_policy.xml,sha256=EVGKES0KLfeQyBv82ABQzbbV_QcdtLaezjddltaRtTg,6883
|
|
117
117
|
odoo/addons/account_credit_control/views/credit_control_run.xml,sha256=LneeJVZi8crhGRDIBHBHZhKH3j_00xcH2bHPZ0flato,5514
|
|
118
118
|
odoo/addons/account_credit_control/views/res_company.xml,sha256=aTBE7IoPHIRjPKG3A-CYaTcq-1x5BHPw3Lcotepnso8,954
|
|
@@ -128,7 +128,7 @@ odoo/addons/account_credit_control/wizard/credit_control_policy_changer_view.xml
|
|
|
128
128
|
odoo/addons/account_credit_control/wizard/credit_control_printer.py,sha256=1UhTbmiZW6Do2x-2D-K-Lrv003P3P9VlhstVjfJBzZo,1816
|
|
129
129
|
odoo/addons/account_credit_control/wizard/credit_control_printer_view.xml,sha256=PbziKrepf9o5ocwZlWdhPwWCkaa2_6AhuoKMp6rEzWI,2101
|
|
130
130
|
odoo/addons/account_credit_control/wizard/mail_compose_message.py,sha256=g-VEcrShJZmAzGd81aIZ4KjanbHc9gwCX5G7zISODrg,797
|
|
131
|
-
odoo_addon_account_credit_control-16.0.2.0.
|
|
132
|
-
odoo_addon_account_credit_control-16.0.2.0.
|
|
133
|
-
odoo_addon_account_credit_control-16.0.2.0.
|
|
134
|
-
odoo_addon_account_credit_control-16.0.2.0.
|
|
131
|
+
odoo_addon_account_credit_control-16.0.2.0.2.dist-info/METADATA,sha256=fqKvvOjdKb5BFlzOa67Gu6KkaC3rri1whwtajca9mC8,5982
|
|
132
|
+
odoo_addon_account_credit_control-16.0.2.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
133
|
+
odoo_addon_account_credit_control-16.0.2.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
134
|
+
odoo_addon_account_credit_control-16.0.2.0.2.dist-info/RECORD,,
|
|
File without changes
|