odoo-addon-account-credit-control 17.0.2.2.2__py3-none-any.whl → 18.0.1.0.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 +8 -6
- odoo/addons/account_credit_control/__manifest__.py +1 -1
- odoo/addons/account_credit_control/data/data.xml +50 -45
- odoo/addons/account_credit_control/i18n/account_credit_control.pot +15 -60
- odoo/addons/account_credit_control/migrations/18.0.1.0.0/noupdate_changes.xml +21 -0
- odoo/addons/account_credit_control/migrations/18.0.1.0.0/post-migration.py +11 -0
- odoo/addons/account_credit_control/models/__init__.py +0 -1
- odoo/addons/account_credit_control/models/credit_control_line.py +1 -1
- odoo/addons/account_credit_control/models/credit_control_policy.py +7 -9
- odoo/addons/account_credit_control/models/mail_mail.py +4 -27
- odoo/addons/account_credit_control/readme/CONTRIBUTORS.md +2 -0
- odoo/addons/account_credit_control/report/account_credit_control_analysis.xml +3 -3
- odoo/addons/account_credit_control/report/report.xml +8 -9
- odoo/addons/account_credit_control/security/account_security.xml +6 -8
- odoo/addons/account_credit_control/static/description/index.html +6 -4
- odoo/addons/account_credit_control/tests/test_account_move.py +3 -6
- odoo/addons/account_credit_control/tests/test_credit_control_policy.py +2 -8
- odoo/addons/account_credit_control/tests/test_credit_control_run.py +12 -14
- odoo/addons/account_credit_control/tests/test_res_partner.py +37 -19
- odoo/addons/account_credit_control/views/account_move.xml +2 -2
- odoo/addons/account_credit_control/views/credit_control_communication.xml +9 -18
- odoo/addons/account_credit_control/views/credit_control_line.xml +7 -28
- odoo/addons/account_credit_control/views/credit_control_policy.xml +14 -14
- odoo/addons/account_credit_control/views/credit_control_run.xml +5 -5
- odoo/addons/account_credit_control/views/res_partner.xml +11 -12
- odoo/addons/account_credit_control/wizard/credit_control_emailer_view.xml +0 -1
- odoo/addons/account_credit_control/wizard/credit_control_marker.py +1 -1
- odoo/addons/account_credit_control/wizard/credit_control_policy_changer_view.xml +0 -1
- odoo/addons/account_credit_control/wizard/credit_control_printer_view.xml +0 -1
- {odoo_addon_account_credit_control-17.0.2.2.2.dist-info → odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info}/METADATA +11 -9
- {odoo_addon_account_credit_control-17.0.2.2.2.dist-info → odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info}/RECORD +33 -32
- odoo/addons/account_credit_control/models/mail_message.py +0 -25
- {odoo_addon_account_credit_control-17.0.2.2.2.dist-info → odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info}/WHEEL +0 -0
- {odoo_addon_account_credit_control-17.0.2.2.2.dist-info → odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info}/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<field name="name">credit.control.line.form</field>
|
|
5
5
|
<field name="model">credit.control.line</field>
|
|
6
6
|
<field name="arch" type="xml">
|
|
7
|
-
<form
|
|
7
|
+
<form>
|
|
8
8
|
<header>
|
|
9
9
|
<field
|
|
10
10
|
name="state"
|
|
@@ -46,11 +46,7 @@
|
|
|
46
46
|
</group>
|
|
47
47
|
</group>
|
|
48
48
|
</sheet>
|
|
49
|
-
<
|
|
50
|
-
<field name="message_follower_ids" widget="mail_followers" />
|
|
51
|
-
<field name="activity_ids" widget="mail_activity" />
|
|
52
|
-
<field name="message_ids" widget="mail_thread" />
|
|
53
|
-
</div>
|
|
49
|
+
<chatter />
|
|
54
50
|
</form>
|
|
55
51
|
</field>
|
|
56
52
|
</record>
|
|
@@ -58,7 +54,7 @@
|
|
|
58
54
|
<field name="name">Credit Control Lines</field>
|
|
59
55
|
<field name="model">credit.control.line</field>
|
|
60
56
|
<field name="arch" type="xml">
|
|
61
|
-
<search
|
|
57
|
+
<search>
|
|
62
58
|
<group>
|
|
63
59
|
<field name="date" />
|
|
64
60
|
<field name="channel" />
|
|
@@ -74,49 +70,42 @@
|
|
|
74
70
|
<group string="Filters" name="filters">
|
|
75
71
|
<filter
|
|
76
72
|
name="filter_draft"
|
|
77
|
-
icon="fa-envelope"
|
|
78
73
|
string="Draft"
|
|
79
74
|
domain="[('state', '=', 'draft')]"
|
|
80
75
|
help="Draft lines have to be triaged."
|
|
81
76
|
/>
|
|
82
77
|
<filter
|
|
83
78
|
name="filter_to_be_sent"
|
|
84
|
-
icon="fa-share"
|
|
85
79
|
string="To Do"
|
|
86
80
|
domain="[('state', '=', 'to_be_sent')]"
|
|
87
81
|
help="These lines are to do using the Actions."
|
|
88
82
|
/>
|
|
89
83
|
<filter
|
|
90
84
|
name="filter_ignored"
|
|
91
|
-
icon="fa-times"
|
|
92
85
|
string="Ignored"
|
|
93
86
|
domain="[('state', '=', 'ignored')]"
|
|
94
87
|
help="Lines which have been ignored from previous runs."
|
|
95
88
|
/>
|
|
96
89
|
<filter
|
|
97
90
|
name="filter_sent"
|
|
98
|
-
icon="fa-paper-plane"
|
|
99
91
|
string="Done"
|
|
100
92
|
domain="[('state', '=', 'sent')]"
|
|
101
93
|
help="Lines already done."
|
|
102
94
|
/>
|
|
103
95
|
<filter
|
|
104
96
|
name="filter_error"
|
|
105
|
-
icon="fa-exclamation-triangle"
|
|
106
97
|
string="Error"
|
|
107
98
|
domain="[('state', 'in', ('error', 'email_error'))]"
|
|
108
99
|
help="An error has occured during the sending of the email."
|
|
109
100
|
/>
|
|
110
101
|
<filter
|
|
111
102
|
name="filter_manual"
|
|
112
|
-
icon="fa-hand-paper-o"
|
|
113
103
|
string="Manual change"
|
|
114
104
|
domain="[('manually_overridden', '=', True)]"
|
|
115
105
|
help="The line was deprecated by a manual change of policy on invoice."
|
|
116
106
|
/>
|
|
117
107
|
<filter
|
|
118
108
|
name="filter_manual"
|
|
119
|
-
icon="fa-hand-paper-o"
|
|
120
109
|
string="Manual followup"
|
|
121
110
|
domain="[('manual_followup', '=', True)]"
|
|
122
111
|
help="The partner had a manual followup."
|
|
@@ -127,70 +116,60 @@
|
|
|
127
116
|
name="group_by_date"
|
|
128
117
|
domain='[]'
|
|
129
118
|
context="{'group_by': 'date'}"
|
|
130
|
-
icon="terp-go-month"
|
|
131
119
|
string="Run date"
|
|
132
120
|
/>
|
|
133
121
|
<filter
|
|
134
122
|
name="group_by_level"
|
|
135
123
|
domain='[]'
|
|
136
124
|
context="{'group_by': 'level'}"
|
|
137
|
-
icon="terp-gtk-jump-to-rtl"
|
|
138
125
|
string="Level"
|
|
139
126
|
/>
|
|
140
127
|
<filter
|
|
141
128
|
name="group_by_partner"
|
|
142
129
|
domain='[]'
|
|
143
130
|
context="{'group_by': 'partner_id'}"
|
|
144
|
-
icon="terp-partner"
|
|
145
131
|
string="Partner"
|
|
146
132
|
/>
|
|
147
133
|
<filter
|
|
148
134
|
name="group_by_account"
|
|
149
135
|
domain='[]'
|
|
150
136
|
context="{'group_by': 'account_id'}"
|
|
151
|
-
icon="terp-folder-green"
|
|
152
137
|
string="Account"
|
|
153
138
|
/>
|
|
154
139
|
<filter
|
|
155
140
|
name="group_by_invoice"
|
|
156
141
|
domain='[]'
|
|
157
142
|
context="{'group_by': 'invoice_id'}"
|
|
158
|
-
icon="terp-document-new"
|
|
159
143
|
string="Invoice"
|
|
160
144
|
/>
|
|
161
145
|
<filter
|
|
162
146
|
name="group_by_policy"
|
|
163
147
|
domain='[]'
|
|
164
148
|
context="{'group_by': 'policy_id'}"
|
|
165
|
-
icon="terp-document-new"
|
|
166
149
|
string="Credit policy"
|
|
167
150
|
/>
|
|
168
151
|
<filter
|
|
169
152
|
name="group_by_policy_level"
|
|
170
153
|
domain='[]'
|
|
171
154
|
context="{'group_by': 'policy_level_id'}"
|
|
172
|
-
icon="terp-document-new"
|
|
173
155
|
string="Credit policy level"
|
|
174
156
|
/>
|
|
175
157
|
<filter
|
|
176
158
|
name="group_by_channel"
|
|
177
159
|
domain='[]'
|
|
178
160
|
context="{'group_by': 'channel'}"
|
|
179
|
-
icon="terp-document-new"
|
|
180
161
|
string="Channel"
|
|
181
162
|
/>
|
|
182
163
|
<filter
|
|
183
164
|
name="group_by_overridden"
|
|
184
165
|
domain='[]'
|
|
185
166
|
context="{'group_by': 'manually_overridden'}"
|
|
186
|
-
icon="terp-document-new"
|
|
187
167
|
string="Manual change"
|
|
188
168
|
/>
|
|
189
169
|
<filter
|
|
190
170
|
name="group_by_followup"
|
|
191
171
|
domain='[]'
|
|
192
172
|
context="{'group_by': 'manual_followup'}"
|
|
193
|
-
icon="terp-document-new"
|
|
194
173
|
string="Manual followup"
|
|
195
174
|
/>
|
|
196
175
|
<filter
|
|
@@ -203,10 +182,10 @@
|
|
|
203
182
|
</field>
|
|
204
183
|
</record>
|
|
205
184
|
<record id="credit_control_line_tree" model="ir.ui.view">
|
|
206
|
-
<field name="name">credit.control.line.
|
|
185
|
+
<field name="name">credit.control.line.list</field>
|
|
207
186
|
<field name="model">credit.control.line</field>
|
|
208
187
|
<field name="arch" type="xml">
|
|
209
|
-
<
|
|
188
|
+
<list
|
|
210
189
|
editable="bottom"
|
|
211
190
|
decoration-danger="state in ('error', 'email_error')"
|
|
212
191
|
decoration-muted="state == 'ignored'"
|
|
@@ -239,7 +218,7 @@
|
|
|
239
218
|
/>
|
|
240
219
|
<field name="policy_id" readonly="state != 'draft'" />
|
|
241
220
|
<field name="activity_ids" widget="list_activity" optional="show" />
|
|
242
|
-
</
|
|
221
|
+
</list>
|
|
243
222
|
</field>
|
|
244
223
|
</record>
|
|
245
224
|
<menuitem
|
|
@@ -255,7 +234,7 @@
|
|
|
255
234
|
<field name="res_model">credit.control.line</field>
|
|
256
235
|
<field name="domain" />
|
|
257
236
|
<field name="binding_view_types">form</field>
|
|
258
|
-
<field name="view_mode">
|
|
237
|
+
<field name="view_mode">list,form,activity</field>
|
|
259
238
|
<field name="view_id" ref="credit_control_line_tree" />
|
|
260
239
|
<field name="context">{'search_default_filter_draft': 1,
|
|
261
240
|
'search_default_filter_to_be_sent': 1}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<field name="name">credit.control.policy.form</field>
|
|
5
5
|
<field name="model">credit.control.policy</field>
|
|
6
6
|
<field name="arch" type="xml">
|
|
7
|
-
<form
|
|
7
|
+
<form>
|
|
8
8
|
<sheet>
|
|
9
9
|
<div class="oe_button_box" name="button_box" />
|
|
10
10
|
<widget
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
<notebook colspan="4">
|
|
31
31
|
<page string="Policy levels">
|
|
32
32
|
<field name="level_ids" nolabel="1" colspan="4">
|
|
33
|
-
<
|
|
33
|
+
<list>
|
|
34
34
|
<field name="name" />
|
|
35
35
|
<field name="level" />
|
|
36
36
|
<field name="channel" />
|
|
37
37
|
<field name="delay_days" />
|
|
38
38
|
<field name="computation_mode" />
|
|
39
39
|
<field name="email_template_id" />
|
|
40
|
-
</
|
|
41
|
-
<form
|
|
40
|
+
</list>
|
|
41
|
+
<form>
|
|
42
42
|
<field name="name" />
|
|
43
43
|
<notebook>
|
|
44
44
|
<page string="Delay Setting">
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
</page>
|
|
79
79
|
<page string="Accounts">
|
|
80
80
|
<field name="account_ids" nolabel="1">
|
|
81
|
-
<
|
|
81
|
+
<list>
|
|
82
82
|
<field name="code" />
|
|
83
83
|
<field name="name" />
|
|
84
84
|
<field name="account_type" />
|
|
85
85
|
<field name="currency_id" />
|
|
86
86
|
<field name="tag_ids" widget="many2many_tags" />
|
|
87
|
-
</
|
|
87
|
+
</list>
|
|
88
88
|
</field>
|
|
89
89
|
</page>
|
|
90
90
|
</notebook>
|
|
@@ -93,13 +93,13 @@
|
|
|
93
93
|
</field>
|
|
94
94
|
</record>
|
|
95
95
|
<record id="credit_control_policy_tree" model="ir.ui.view">
|
|
96
|
-
<field name="name">credit.control.policy.
|
|
96
|
+
<field name="name">credit.control.policy.list</field>
|
|
97
97
|
<field name="model">credit.control.policy</field>
|
|
98
98
|
<field name="arch" type="xml">
|
|
99
|
-
<
|
|
99
|
+
<list>
|
|
100
100
|
<field name="name" />
|
|
101
101
|
<field name="do_nothing" />
|
|
102
|
-
</
|
|
102
|
+
</list>
|
|
103
103
|
</field>
|
|
104
104
|
</record>
|
|
105
105
|
<menuitem
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
<field name="res_model">credit.control.policy</field>
|
|
115
115
|
<field name="domain" />
|
|
116
116
|
<field name="binding_view_types">form</field>
|
|
117
|
-
<field name="view_mode">
|
|
117
|
+
<field name="view_mode">list,form</field>
|
|
118
118
|
<field name="view_id" ref="credit_control_policy_tree" />
|
|
119
119
|
</record>
|
|
120
120
|
<menuitem
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
<field name="name">credit.mangement.policy.level.form</field>
|
|
128
128
|
<field name="model">credit.control.policy.level</field>
|
|
129
129
|
<field name="arch" type="xml">
|
|
130
|
-
<form
|
|
130
|
+
<form>
|
|
131
131
|
<field name="name" />
|
|
132
132
|
<notebook colspan="4">
|
|
133
133
|
<page string="Delay Setting">
|
|
@@ -149,17 +149,17 @@
|
|
|
149
149
|
</field>
|
|
150
150
|
</record>
|
|
151
151
|
<record id="credit_control_policy_level_tree" model="ir.ui.view">
|
|
152
|
-
<field name="name">credit.control.policy.level.
|
|
152
|
+
<field name="name">credit.control.policy.level.list</field>
|
|
153
153
|
<field name="model">credit.control.policy.level</field>
|
|
154
154
|
<field name="arch" type="xml">
|
|
155
|
-
<
|
|
155
|
+
<list>
|
|
156
156
|
<field name="name" />
|
|
157
157
|
<field name="level" />
|
|
158
158
|
<field name="channel" />
|
|
159
159
|
<field name="delay_days" />
|
|
160
160
|
<field name="computation_mode" />
|
|
161
161
|
<field name="email_template_id" />
|
|
162
|
-
</
|
|
162
|
+
</list>
|
|
163
163
|
</field>
|
|
164
164
|
</record>
|
|
165
165
|
</odoo>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
2
|
<odoo>
|
|
3
3
|
<record id="credit_control_run_tree" model="ir.ui.view">
|
|
4
|
-
<field name="name">credit.control.run.
|
|
4
|
+
<field name="name">credit.control.run.list</field>
|
|
5
5
|
<field name="model">credit.control.run</field>
|
|
6
6
|
<field name="arch" type="xml">
|
|
7
|
-
<
|
|
7
|
+
<list>
|
|
8
8
|
<field name="date" readonly="state != 'draft'" />
|
|
9
9
|
<field
|
|
10
10
|
name="company_id"
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
readonly="state != 'draft'"
|
|
13
13
|
/>
|
|
14
14
|
<field name="state" />
|
|
15
|
-
</
|
|
15
|
+
</list>
|
|
16
16
|
</field>
|
|
17
17
|
</record>
|
|
18
18
|
<record id="credit_control_run_form" model="ir.ui.view">
|
|
19
19
|
<field name="name">credit.control.run.form</field>
|
|
20
20
|
<field name="model">credit.control.run</field>
|
|
21
21
|
<field name="arch" type="xml">
|
|
22
|
-
<form
|
|
22
|
+
<form>
|
|
23
23
|
<header>
|
|
24
24
|
<button
|
|
25
25
|
name="generate_credit_lines"
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
<field name="res_model">credit.control.run</field>
|
|
119
119
|
<field name="domain" />
|
|
120
120
|
<field name="binding_view_types">form</field>
|
|
121
|
-
<field name="view_mode">
|
|
121
|
+
<field name="view_mode">list,form</field>
|
|
122
122
|
<field name="view_id" ref="credit_control_run_tree" />
|
|
123
123
|
</record>
|
|
124
124
|
<menuitem
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
2
|
<odoo>
|
|
3
|
-
|
|
4
3
|
<record id="act_partner_credit_relation_relation" model="ir.actions.act_window">
|
|
5
4
|
<field name="name">Credit Lines</field>
|
|
6
5
|
<field
|
|
@@ -12,7 +11,7 @@
|
|
|
12
11
|
name="context"
|
|
13
12
|
>{'search_default_partner_id': active_id, 'default_partner_id': active_id}</field>
|
|
14
13
|
<field name="res_model">credit.control.line</field>
|
|
15
|
-
<field name="view_mode">
|
|
14
|
+
<field name="view_mode">list,form,activity</field>
|
|
16
15
|
</record>
|
|
17
16
|
|
|
18
17
|
<record id="partner_view_buttons" model="ir.ui.view">
|
|
@@ -70,11 +69,11 @@
|
|
|
70
69
|
nolabel="1"
|
|
71
70
|
groups="account_credit_control.group_account_credit_control_info"
|
|
72
71
|
>
|
|
73
|
-
<
|
|
72
|
+
<list editable="bottom">
|
|
74
73
|
<field name="policy_id" />
|
|
75
74
|
<field name="policy_level_id" />
|
|
76
75
|
<field name="level" />
|
|
77
|
-
</
|
|
76
|
+
</list>
|
|
78
77
|
</field>
|
|
79
78
|
</group>
|
|
80
79
|
</page>
|
|
@@ -82,11 +81,11 @@
|
|
|
82
81
|
</field>
|
|
83
82
|
</record>
|
|
84
83
|
<record id="customer_followup_tree" model="ir.ui.view">
|
|
85
|
-
<field name="name">res.partner.followup.inherit.
|
|
84
|
+
<field name="name">res.partner.followup.inherit.list</field>
|
|
86
85
|
<field name="model">res.partner</field>
|
|
87
86
|
<field name="priority" eval="20" />
|
|
88
87
|
<field name="arch" type="xml">
|
|
89
|
-
<
|
|
88
|
+
<list create="false" delete="false">
|
|
90
89
|
<field
|
|
91
90
|
name="display_name"
|
|
92
91
|
groups="account_credit_control.group_account_credit_control_manager,account_credit_control.group_account_credit_control_user"
|
|
@@ -111,7 +110,7 @@
|
|
|
111
110
|
name="payment_note"
|
|
112
111
|
groups="account_credit_control.group_account_credit_control_manager,account_credit_control.group_account_credit_control_user"
|
|
113
112
|
/>
|
|
114
|
-
</
|
|
113
|
+
</list>
|
|
115
114
|
</field>
|
|
116
115
|
</record>
|
|
117
116
|
<record id="action_customer_followup" model="ir.actions.act_window">
|
|
@@ -119,13 +118,13 @@
|
|
|
119
118
|
<field name="view_id" ref="customer_followup_tree" />
|
|
120
119
|
<field name="res_model">res.partner</field>
|
|
121
120
|
<field name="binding_view_types">form</field>
|
|
122
|
-
<field name="view_mode">
|
|
121
|
+
<field name="view_mode">list,form</field>
|
|
123
122
|
<field name="domain">[('manual_followup', '=', True)]</field>
|
|
124
123
|
<field name="context">{}</field>
|
|
125
124
|
</record>
|
|
126
125
|
<record id="action_view_customer_followup_tree" model="ir.actions.act_window.view">
|
|
127
126
|
<field name="sequence" eval="1" />
|
|
128
|
-
<field name="view_mode">
|
|
127
|
+
<field name="view_mode">list</field>
|
|
129
128
|
<field name="view_id" ref="customer_followup_tree" />
|
|
130
129
|
<field name="act_window_id" ref="action_customer_followup" />
|
|
131
130
|
</record>
|
|
@@ -165,10 +164,10 @@
|
|
|
165
164
|
<field name="name">res.partner.payment.action.type.form</field>
|
|
166
165
|
<field name="model">res.partner.payment.action.type</field>
|
|
167
166
|
<field name="arch" type="xml">
|
|
168
|
-
<
|
|
167
|
+
<list>
|
|
169
168
|
<field name="sequence" widget="handle" />
|
|
170
169
|
<field name="name" />
|
|
171
|
-
</
|
|
170
|
+
</list>
|
|
172
171
|
</field>
|
|
173
172
|
</record>
|
|
174
173
|
<record
|
|
@@ -177,7 +176,7 @@
|
|
|
177
176
|
>
|
|
178
177
|
<field name="name">Partner Payment Action Types</field>
|
|
179
178
|
<field name="res_model">res.partner.payment.action.type</field>
|
|
180
|
-
<field name="view_mode">
|
|
179
|
+
<field name="view_mode">list,form</field>
|
|
181
180
|
</record>
|
|
182
181
|
<record model="ir.ui.menu" id="res_partner_payment_action_type_menu">
|
|
183
182
|
<field name="name">Partner Payment Action Types</field>
|
|
@@ -78,7 +78,7 @@ class CreditControlMarker(models.TransientModel):
|
|
|
78
78
|
return {
|
|
79
79
|
"domain": str([("id", "in", filtered_lines.ids)]),
|
|
80
80
|
"binding_view_types": "form",
|
|
81
|
-
"view_mode": "
|
|
81
|
+
"view_mode": "list,form",
|
|
82
82
|
"view_id": False,
|
|
83
83
|
"name": _("Control Credit Line"),
|
|
84
84
|
"res_model": "credit.control.line",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_credit_control
|
|
3
|
-
Version:
|
|
3
|
+
Version: 18.0.1.0.0.2
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
|
-
Requires-Dist: odoo
|
|
5
|
+
Requires-Dist: odoo==18.0.*
|
|
6
6
|
Summary: Account Credit Control
|
|
7
7
|
Home-page: https://github.com/OCA/credit-control
|
|
8
8
|
License: AGPL-3
|
|
@@ -10,7 +10,7 @@ Author: Camptocamp,Odoo Community Association (OCA),Okia,Access Bookings,Tecnati
|
|
|
10
10
|
Author-email: support@odoo-community.org
|
|
11
11
|
Classifier: Programming Language :: Python
|
|
12
12
|
Classifier: Framework :: Odoo
|
|
13
|
-
Classifier: Framework :: Odoo ::
|
|
13
|
+
Classifier: Framework :: Odoo :: 18.0
|
|
14
14
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
15
15
|
|
|
16
16
|
======================
|
|
@@ -22,7 +22,7 @@ Account Credit Control
|
|
|
22
22
|
!! This file is generated by oca-gen-addon-readme !!
|
|
23
23
|
!! changes will be overwritten. !!
|
|
24
24
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
25
|
-
!! source digest: sha256:
|
|
25
|
+
!! source digest: sha256:62f3291d80cd43c777aa84d4777818c614789496f49c051ac34aaafd73a9bd83
|
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
27
|
|
|
28
28
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -32,13 +32,13 @@ Account Credit Control
|
|
|
32
32
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
33
33
|
:alt: License: AGPL-3
|
|
34
34
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcredit--control-lightgray.png?logo=github
|
|
35
|
-
:target: https://github.com/OCA/credit-control/tree/
|
|
35
|
+
:target: https://github.com/OCA/credit-control/tree/18.0/account_credit_control
|
|
36
36
|
:alt: OCA/credit-control
|
|
37
37
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
38
|
-
:target: https://translation.odoo-community.org/projects/credit-control-
|
|
38
|
+
:target: https://translation.odoo-community.org/projects/credit-control-18-0/credit-control-18-0-account_credit_control
|
|
39
39
|
:alt: Translate me on Weblate
|
|
40
40
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
41
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/credit-control&target_branch=
|
|
41
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/credit-control&target_branch=18.0
|
|
42
42
|
:alt: Try me on Runboat
|
|
43
43
|
|
|
44
44
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
@@ -104,7 +104,7 @@ Bug Tracker
|
|
|
104
104
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/credit-control/issues>`_.
|
|
105
105
|
In case of trouble, please check there if your issue has already been reported.
|
|
106
106
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
107
|
-
`feedback <https://github.com/OCA/credit-control/issues/new?body=module:%20account_credit_control%0Aversion:%
|
|
107
|
+
`feedback <https://github.com/OCA/credit-control/issues/new?body=module:%20account_credit_control%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
108
108
|
|
|
109
109
|
Do not contact contributors directly about support or help with technical issues.
|
|
110
110
|
|
|
@@ -140,12 +140,14 @@ Contributors
|
|
|
140
140
|
- João Marques
|
|
141
141
|
- César A. Sánchez
|
|
142
142
|
- Víctor Martínez
|
|
143
|
+
- Carlos Lopez
|
|
143
144
|
|
|
144
145
|
- Enric Tobella <etobella@creublanca.es>
|
|
145
146
|
- Naglis Jonaitis (Versada UAB) <naglis@versada.eu>
|
|
146
147
|
- `360ERP <https://www.360erp.com>`__:
|
|
147
148
|
|
|
148
149
|
- Andrea Stirpe
|
|
150
|
+
- Kevin Khao
|
|
149
151
|
|
|
150
152
|
Maintainers
|
|
151
153
|
-----------
|
|
@@ -160,6 +162,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
|
160
162
|
mission is to support the collaborative development of Odoo features and
|
|
161
163
|
promote its widespread use.
|
|
162
164
|
|
|
163
|
-
This module is part of the `OCA/credit-control <https://github.com/OCA/credit-control/tree/
|
|
165
|
+
This module is part of the `OCA/credit-control <https://github.com/OCA/credit-control/tree/18.0/account_credit_control>`_ project on GitHub.
|
|
164
166
|
|
|
165
167
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
odoo/addons/account_credit_control/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_credit_control/README.rst,sha256=4bXlAoUdvWK63h-dBA_JINZ7Dv0LGikeV69qAathDcE,5429
|
|
2
2
|
odoo/addons/account_credit_control/__init__.py,sha256=8MjrwJNjAjKy6j77I1529EUbQMh7TZ867lnz-KzifyI,127
|
|
3
|
-
odoo/addons/account_credit_control/__manifest__.py,sha256=
|
|
4
|
-
odoo/addons/account_credit_control/data/data.xml,sha256=
|
|
3
|
+
odoo/addons/account_credit_control/__manifest__.py,sha256=uXQV04IrfhVzH0eVzmFSVtABkN3yGAnKQeN8U-okBhE,1598
|
|
4
|
+
odoo/addons/account_credit_control/data/data.xml,sha256=UtnBMYU2HOtLYgmxSlU1cEK-XB40enAV90QfkamdgMc,11306
|
|
5
5
|
odoo/addons/account_credit_control/demo/res_users.xml,sha256=KWDhrbbE4VTCHpkvFMu49yeLkGdwIson7hOkboR-0dE,372
|
|
6
|
-
odoo/addons/account_credit_control/i18n/account_credit_control.pot,sha256=
|
|
6
|
+
odoo/addons/account_credit_control/i18n/account_credit_control.pot,sha256=FWIERJ1oTWUhbckQbSxscMexh8sGm5-Djx3vd0Zumtw,75892
|
|
7
7
|
odoo/addons/account_credit_control/i18n/am.po,sha256=O88LSuuKLMaWDGvCbZ6VH6co6GvCwdEhHGBri3GocIs,77408
|
|
8
8
|
odoo/addons/account_credit_control/i18n/ar.po,sha256=oo4Tjpo2fNsvFjmugOkVhaF6AKPug38CcjzsFuJRIUg,77703
|
|
9
9
|
odoo/addons/account_credit_control/i18n/bg.po,sha256=-FOpvfl-zA8988acYUEWt_7nNWo094ZccTlcvizYyHo,77601
|
|
@@ -80,55 +80,56 @@ odoo/addons/account_credit_control/i18n/vi.po,sha256=Te7b3A6YiVSPNrP64JWjGkCFFMt
|
|
|
80
80
|
odoo/addons/account_credit_control/i18n/vi_VN.po,sha256=6LTQGjVY4aNNR7ZO8jaTrbsKCmkx_0B1_GKXVQd5AG4,77434
|
|
81
81
|
odoo/addons/account_credit_control/i18n/zh_CN.po,sha256=B-0VQ5tcowqGuB5hNmpGpe393nhQK3mPfWS81b08t-s,77549
|
|
82
82
|
odoo/addons/account_credit_control/i18n/zh_TW.po,sha256=tVXdUpjiHo32ocmY3dnq6pCHB-L8wRxvfjXckNgrzOE,77527
|
|
83
|
-
odoo/addons/account_credit_control/
|
|
83
|
+
odoo/addons/account_credit_control/migrations/18.0.1.0.0/noupdate_changes.xml,sha256=dvu79iZ4hdL0mri7m-6zZ9oDg5ndjGRq4HygJunn9tY,1042
|
|
84
|
+
odoo/addons/account_credit_control/migrations/18.0.1.0.0/post-migration.py,sha256=7RtrkoTqRjc4sxOZBmwWbsU49XEMVTeTI3kK8v0YIV4,316
|
|
85
|
+
odoo/addons/account_credit_control/models/__init__.py,sha256=PVYm8xVMpPr6s8W-gB9B_TYghqT_O467UM-I3dqnOOA,377
|
|
84
86
|
odoo/addons/account_credit_control/models/account_account.py,sha256=k7A1hrH2xi-em9uvuBsYuAj-UviL1s_X7wK0GprbZI4,503
|
|
85
87
|
odoo/addons/account_credit_control/models/account_move.py,sha256=MzN_JSc7GcuDq3YsXOWs7pgk3e8Wt2QtFRlxifoUe24,2128
|
|
86
88
|
odoo/addons/account_credit_control/models/credit_control_communication.py,sha256=7TvNm5MfjtADU393ZWKhyvBEAXJgwRBlmcY3wXsOPes,10596
|
|
87
|
-
odoo/addons/account_credit_control/models/credit_control_line.py,sha256=
|
|
88
|
-
odoo/addons/account_credit_control/models/credit_control_policy.py,sha256=
|
|
89
|
+
odoo/addons/account_credit_control/models/credit_control_line.py,sha256=vSQ3e-ROhBWSNvbvNwPlas_XGLgodzza1NIIb-9AMWs,10398
|
|
90
|
+
odoo/addons/account_credit_control/models/credit_control_policy.py,sha256=Q-nvyblkFOvxZMyyLAutYvxNVI0hTjOKSt4p17Pa4tA,18165
|
|
89
91
|
odoo/addons/account_credit_control/models/credit_control_run.py,sha256=TcVXDibr1_rIqYWLZIg_X9hrUYCtlkRmoL9fZ9OX9R0,7840
|
|
90
|
-
odoo/addons/account_credit_control/models/mail_mail.py,sha256=
|
|
91
|
-
odoo/addons/account_credit_control/models/mail_message.py,sha256=ZogeU-PTBLTNaW19w49cEYzKgEDcTO9FvCJTQ2Mwm7Q,818
|
|
92
|
+
odoo/addons/account_credit_control/models/mail_mail.py,sha256=Dj9BtaMn-Bda7LJ75CWbtO2nmq4qBcWyB8NBeH7Kkfg,1173
|
|
92
93
|
odoo/addons/account_credit_control/models/res_company.py,sha256=vmoBLc6EmvuwRgUeISjkrDKjwcxv_y94ejVDOA5FDmE,793
|
|
93
94
|
odoo/addons/account_credit_control/models/res_config_settings.py,sha256=JSYMvFivdXWyDusoKY-dhuCfLotOlqA1RrbIYN7HxgQ,1124
|
|
94
95
|
odoo/addons/account_credit_control/models/res_partner.py,sha256=1KbpDRbm_UZvdAc-2VRQodI9ywEFmrNHt_7r4VS7nbI,3934
|
|
95
96
|
odoo/addons/account_credit_control/readme/CONFIGURE.md,sha256=Whc2n2U-5F3Y_m9DBqWSn8dBCf9DI4ILvc3hd-L8AJY,499
|
|
96
|
-
odoo/addons/account_credit_control/readme/CONTRIBUTORS.md,sha256=
|
|
97
|
+
odoo/addons/account_credit_control/readme/CONTRIBUTORS.md,sha256=irEdmdnai6VbFrMNkvnFnZhm_vPjvYVtnG-X4dfELLk,729
|
|
97
98
|
odoo/addons/account_credit_control/readme/DESCRIPTION.md,sha256=o-OuDc4nwPvbcqcFtrsukBN-bPcmnMiQTHHp0II27WM,235
|
|
98
99
|
odoo/addons/account_credit_control/readme/USAGE.md,sha256=VXry1JB0h5qmnQre3n5xKuMEpa8D59XYKKP8nxqw2oQ,1106
|
|
99
100
|
odoo/addons/account_credit_control/report/__init__.py,sha256=5yWnkU7tiAw2FSJdD_ZKeJsktCQQMJYpn3XOsW-lAw8,46
|
|
100
101
|
odoo/addons/account_credit_control/report/account_credit_control_analysis.py,sha256=8lKQWFNWk9EbpUn8e0DuPI9Gl6oOpI2ZsCruyhDTdcY,3526
|
|
101
|
-
odoo/addons/account_credit_control/report/account_credit_control_analysis.xml,sha256=
|
|
102
|
-
odoo/addons/account_credit_control/report/report.xml,sha256=
|
|
102
|
+
odoo/addons/account_credit_control/report/account_credit_control_analysis.xml,sha256=mgZ_aIM-mT4VPedJQelnGRsMz3ErgRzwhM-52uGNHWo,2222
|
|
103
|
+
odoo/addons/account_credit_control/report/report.xml,sha256=UMgTT6RVWjTmjDqC0nEGs-lZlxsgah4vnN7phixkdqs,592
|
|
103
104
|
odoo/addons/account_credit_control/report/report_credit_control_summary.xml,sha256=-5ckNSzLXVfxJmBcLTYf_qoXWPHRHne56p53_vwpfOk,5806
|
|
104
|
-
odoo/addons/account_credit_control/security/account_security.xml,sha256=
|
|
105
|
+
odoo/addons/account_credit_control/security/account_security.xml,sha256=wDtL9khr0tYG_TgbHuVz7j2yHyYIb1ILNPT-rvJaoIo,3918
|
|
105
106
|
odoo/addons/account_credit_control/security/ir.model.access.csv,sha256=FgKzKdftXknPsreudq4NdvaGqxuUaVWWxGgmrfjHqRA,5531
|
|
106
107
|
odoo/addons/account_credit_control/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
107
|
-
odoo/addons/account_credit_control/static/description/index.html,sha256=
|
|
108
|
+
odoo/addons/account_credit_control/static/description/index.html,sha256=DDybAT54_5bGXBq7x4X7Yleh_axmuHDiltJ1DmKz_ww,16057
|
|
108
109
|
odoo/addons/account_credit_control/tests/__init__.py,sha256=ytdwXdWp6qfFDhN08R3rfI-w_AriEuONj3VSBV3Ztb0,206
|
|
109
|
-
odoo/addons/account_credit_control/tests/test_account_move.py,sha256=
|
|
110
|
-
odoo/addons/account_credit_control/tests/test_credit_control_policy.py,sha256=
|
|
111
|
-
odoo/addons/account_credit_control/tests/test_credit_control_run.py,sha256=
|
|
112
|
-
odoo/addons/account_credit_control/tests/test_res_partner.py,sha256=
|
|
113
|
-
odoo/addons/account_credit_control/views/account_move.xml,sha256=
|
|
114
|
-
odoo/addons/account_credit_control/views/credit_control_communication.xml,sha256=
|
|
115
|
-
odoo/addons/account_credit_control/views/credit_control_line.xml,sha256=
|
|
116
|
-
odoo/addons/account_credit_control/views/credit_control_policy.xml,sha256=
|
|
117
|
-
odoo/addons/account_credit_control/views/credit_control_run.xml,sha256=
|
|
110
|
+
odoo/addons/account_credit_control/tests/test_account_move.py,sha256=Sjf-JpbZ7ZdoOrRGiW4B_bJVshlZ8Wpvyi2z2z0Ym0w,10941
|
|
111
|
+
odoo/addons/account_credit_control/tests/test_credit_control_policy.py,sha256=lF8M-TPSoExu_0fySECLyMUJGkcTcoU7bnahoY1cXvk,2994
|
|
112
|
+
odoo/addons/account_credit_control/tests/test_credit_control_run.py,sha256=dK79IQe8HggNWxGhgiJ01bdWTW4eaMF-oJBOL3nRWao,15677
|
|
113
|
+
odoo/addons/account_credit_control/tests/test_res_partner.py,sha256=xoH3tW1IXLroIRe4c0lj7j06WVQ8-7kv4iTBSx8cTVU,2487
|
|
114
|
+
odoo/addons/account_credit_control/views/account_move.xml,sha256=o_GJfurKwr9w8bDZ2VV0X7ndrQcU3iywjRxVgkuDb1E,2145
|
|
115
|
+
odoo/addons/account_credit_control/views/credit_control_communication.xml,sha256=UgApmNe4iyaatMfH9607Ra7U5gb4saKa-tZofxy9R0w,6389
|
|
116
|
+
odoo/addons/account_credit_control/views/credit_control_line.xml,sha256=67g-KldJWF_xDjeVD4r9aOFGkHULLprftRw3GdxGCeE,10848
|
|
117
|
+
odoo/addons/account_credit_control/views/credit_control_policy.xml,sha256=huKRaa_PtCqB1RvJiu0JStnDAh7FuNt5PhyYJpeEIrY,7906
|
|
118
|
+
odoo/addons/account_credit_control/views/credit_control_run.xml,sha256=rNkMc9RsPFenrDs9K_Nsd63gu9GPhkCCqu_sfkuUObI,5609
|
|
118
119
|
odoo/addons/account_credit_control/views/res_company.xml,sha256=aTBE7IoPHIRjPKG3A-CYaTcq-1x5BHPw3Lcotepnso8,954
|
|
119
120
|
odoo/addons/account_credit_control/views/res_config_settings_view.xml,sha256=KFtCgWmZG-Qzo0-UCXZpe9rhaGPKfO0gvRV5jIQeVME,2696
|
|
120
|
-
odoo/addons/account_credit_control/views/res_partner.xml,sha256=
|
|
121
|
+
odoo/addons/account_credit_control/views/res_partner.xml,sha256=vbiBHuZGLL9O5WVCXikrx-SRdNkxz8Wbi0UfK7-8dbg,9036
|
|
121
122
|
odoo/addons/account_credit_control/wizard/__init__.py,sha256=5tOcdayjOCnK9tSEhwnWzYe_fS4pZL4EvZ1XoxIQfqM,253
|
|
122
123
|
odoo/addons/account_credit_control/wizard/credit_control_emailer.py,sha256=ixD4Wd_qE9R-pL0i1yopuIIa75FzgMqWTkFIeqeJlgk,2299
|
|
123
|
-
odoo/addons/account_credit_control/wizard/credit_control_emailer_view.xml,sha256=
|
|
124
|
-
odoo/addons/account_credit_control/wizard/credit_control_marker.py,sha256=
|
|
124
|
+
odoo/addons/account_credit_control/wizard/credit_control_emailer_view.xml,sha256=NAFEGAICJS-JS3wYvQipJi5d2edUGUFquHu8u9kSMWo,2048
|
|
125
|
+
odoo/addons/account_credit_control/wizard/credit_control_marker.py,sha256=o8-swM_nMgi2elfqPDMoW0cWLSUINvpOj2ACW7owjGo,2712
|
|
125
126
|
odoo/addons/account_credit_control/wizard/credit_control_marker_view.xml,sha256=2FUHF0N-Yw0h9RFdSoKkM_zqyb9ZjVEwu-VDyXuX3LM,2374
|
|
126
127
|
odoo/addons/account_credit_control/wizard/credit_control_policy_changer.py,sha256=LSntwOHZXrueL-e7GdTBsQZH-zeDdsj6DcBVFfLq0tc,5076
|
|
127
|
-
odoo/addons/account_credit_control/wizard/credit_control_policy_changer_view.xml,sha256=
|
|
128
|
+
odoo/addons/account_credit_control/wizard/credit_control_policy_changer_view.xml,sha256=y5J35jD4x06VbkdE40ZWbpyLLj8-3lTEqQp2xNvueO4,2915
|
|
128
129
|
odoo/addons/account_credit_control/wizard/credit_control_printer.py,sha256=1UhTbmiZW6Do2x-2D-K-Lrv003P3P9VlhstVjfJBzZo,1816
|
|
129
|
-
odoo/addons/account_credit_control/wizard/credit_control_printer_view.xml,sha256=
|
|
130
|
+
odoo/addons/account_credit_control/wizard/credit_control_printer_view.xml,sha256=HH2mAjJRQwqGUv9YQeCUlYrObbR_fHHXFRyO5MjNkEI,2100
|
|
130
131
|
odoo/addons/account_credit_control/wizard/mail_compose_message.py,sha256=JCnfhE338Z9ebZliiGKlJaCpZOjit5AQwRPKqwUAB_8,1063
|
|
131
|
-
odoo_addon_account_credit_control-
|
|
132
|
-
odoo_addon_account_credit_control-
|
|
133
|
-
odoo_addon_account_credit_control-
|
|
134
|
-
odoo_addon_account_credit_control-
|
|
132
|
+
odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info/METADATA,sha256=YAxqp-ToPHQxsiwap89uY0YG7icniVdE7wwTSGq6loI,5987
|
|
133
|
+
odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
|
134
|
+
odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
135
|
+
odoo_addon_account_credit_control-18.0.1.0.0.2.dist-info/RECORD,,
|