odoo-addon-sale-commission-product-criteria-domain 16.0.1.0.0.3__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/sale_commission_product_criteria_domain/README.rst +124 -0
- odoo/addons/sale_commission_product_criteria_domain/__init__.py +1 -0
- odoo/addons/sale_commission_product_criteria_domain/__manifest__.py +26 -0
- odoo/addons/sale_commission_product_criteria_domain/demo/demo_data.xml +137 -0
- odoo/addons/sale_commission_product_criteria_domain/i18n/it.po +272 -0
- odoo/addons/sale_commission_product_criteria_domain/i18n/sale_commission_product_criteria_domain.pot +246 -0
- odoo/addons/sale_commission_product_criteria_domain/models/__init__.py +6 -0
- odoo/addons/sale_commission_product_criteria_domain/models/account_invoice_line_agent.py +30 -0
- odoo/addons/sale_commission_product_criteria_domain/models/commission.py +90 -0
- odoo/addons/sale_commission_product_criteria_domain/models/commission_group.py +72 -0
- odoo/addons/sale_commission_product_criteria_domain/models/partner.py +75 -0
- odoo/addons/sale_commission_product_criteria_domain/models/sale_commission_line_mixin.py +66 -0
- odoo/addons/sale_commission_product_criteria_domain/models/sale_order_line_agent.py +29 -0
- odoo/addons/sale_commission_product_criteria_domain/readme/CONTRIBUTORS.rst +6 -0
- odoo/addons/sale_commission_product_criteria_domain/readme/DESCRIPTION.rst +9 -0
- odoo/addons/sale_commission_product_criteria_domain/readme/USAGE.rst +22 -0
- odoo/addons/sale_commission_product_criteria_domain/security/ir.model.access.csv +5 -0
- odoo/addons/sale_commission_product_criteria_domain/static/description/icon.png +0 -0
- odoo/addons/sale_commission_product_criteria_domain/static/description/index.html +453 -0
- odoo/addons/sale_commission_product_criteria_domain/tests/__init__.py +1 -0
- odoo/addons/sale_commission_product_criteria_domain/tests/test_sale_commission_product_criteria_domain.py +334 -0
- odoo/addons/sale_commission_product_criteria_domain/views/views.xml +222 -0
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.0.3.dist-info/METADATA +143 -0
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.0.3.dist-info/RECORD +26 -0
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.0.3.dist-info/WHEEL +5 -0
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.0.3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,453 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
6
|
+
<title>Sale Commission Product Criteria Domain</title>
|
7
|
+
<style type="text/css">
|
8
|
+
|
9
|
+
/*
|
10
|
+
:Author: David Goodger (goodger@python.org)
|
11
|
+
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
12
|
+
:Copyright: This stylesheet has been placed in the public domain.
|
13
|
+
|
14
|
+
Default cascading style sheet for the HTML output of Docutils.
|
15
|
+
|
16
|
+
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
17
|
+
customize this style sheet.
|
18
|
+
*/
|
19
|
+
|
20
|
+
/* used to remove borders from tables and images */
|
21
|
+
.borderless, table.borderless td, table.borderless th {
|
22
|
+
border: 0 }
|
23
|
+
|
24
|
+
table.borderless td, table.borderless th {
|
25
|
+
/* Override padding for "table.docutils td" with "! important".
|
26
|
+
The right padding separates the table cells. */
|
27
|
+
padding: 0 0.5em 0 0 ! important }
|
28
|
+
|
29
|
+
.first {
|
30
|
+
/* Override more specific margin styles with "! important". */
|
31
|
+
margin-top: 0 ! important }
|
32
|
+
|
33
|
+
.last, .with-subtitle {
|
34
|
+
margin-bottom: 0 ! important }
|
35
|
+
|
36
|
+
.hidden {
|
37
|
+
display: none }
|
38
|
+
|
39
|
+
.subscript {
|
40
|
+
vertical-align: sub;
|
41
|
+
font-size: smaller }
|
42
|
+
|
43
|
+
.superscript {
|
44
|
+
vertical-align: super;
|
45
|
+
font-size: smaller }
|
46
|
+
|
47
|
+
a.toc-backref {
|
48
|
+
text-decoration: none ;
|
49
|
+
color: black }
|
50
|
+
|
51
|
+
blockquote.epigraph {
|
52
|
+
margin: 2em 5em ; }
|
53
|
+
|
54
|
+
dl.docutils dd {
|
55
|
+
margin-bottom: 0.5em }
|
56
|
+
|
57
|
+
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
58
|
+
overflow: hidden;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
62
|
+
dl.docutils dt {
|
63
|
+
font-weight: bold }
|
64
|
+
*/
|
65
|
+
|
66
|
+
div.abstract {
|
67
|
+
margin: 2em 5em }
|
68
|
+
|
69
|
+
div.abstract p.topic-title {
|
70
|
+
font-weight: bold ;
|
71
|
+
text-align: center }
|
72
|
+
|
73
|
+
div.admonition, div.attention, div.caution, div.danger, div.error,
|
74
|
+
div.hint, div.important, div.note, div.tip, div.warning {
|
75
|
+
margin: 2em ;
|
76
|
+
border: medium outset ;
|
77
|
+
padding: 1em }
|
78
|
+
|
79
|
+
div.admonition p.admonition-title, div.hint p.admonition-title,
|
80
|
+
div.important p.admonition-title, div.note p.admonition-title,
|
81
|
+
div.tip p.admonition-title {
|
82
|
+
font-weight: bold ;
|
83
|
+
font-family: sans-serif }
|
84
|
+
|
85
|
+
div.attention p.admonition-title, div.caution p.admonition-title,
|
86
|
+
div.danger p.admonition-title, div.error p.admonition-title,
|
87
|
+
div.warning p.admonition-title, .code .error {
|
88
|
+
color: red ;
|
89
|
+
font-weight: bold ;
|
90
|
+
font-family: sans-serif }
|
91
|
+
|
92
|
+
/* Uncomment (and remove this text!) to get reduced vertical space in
|
93
|
+
compound paragraphs.
|
94
|
+
div.compound .compound-first, div.compound .compound-middle {
|
95
|
+
margin-bottom: 0.5em }
|
96
|
+
|
97
|
+
div.compound .compound-last, div.compound .compound-middle {
|
98
|
+
margin-top: 0.5em }
|
99
|
+
*/
|
100
|
+
|
101
|
+
div.dedication {
|
102
|
+
margin: 2em 5em ;
|
103
|
+
text-align: center ;
|
104
|
+
font-style: italic }
|
105
|
+
|
106
|
+
div.dedication p.topic-title {
|
107
|
+
font-weight: bold ;
|
108
|
+
font-style: normal }
|
109
|
+
|
110
|
+
div.figure {
|
111
|
+
margin-left: 2em ;
|
112
|
+
margin-right: 2em }
|
113
|
+
|
114
|
+
div.footer, div.header {
|
115
|
+
clear: both;
|
116
|
+
font-size: smaller }
|
117
|
+
|
118
|
+
div.line-block {
|
119
|
+
display: block ;
|
120
|
+
margin-top: 1em ;
|
121
|
+
margin-bottom: 1em }
|
122
|
+
|
123
|
+
div.line-block div.line-block {
|
124
|
+
margin-top: 0 ;
|
125
|
+
margin-bottom: 0 ;
|
126
|
+
margin-left: 1.5em }
|
127
|
+
|
128
|
+
div.sidebar {
|
129
|
+
margin: 0 0 0.5em 1em ;
|
130
|
+
border: medium outset ;
|
131
|
+
padding: 1em ;
|
132
|
+
background-color: #ffffee ;
|
133
|
+
width: 40% ;
|
134
|
+
float: right ;
|
135
|
+
clear: right }
|
136
|
+
|
137
|
+
div.sidebar p.rubric {
|
138
|
+
font-family: sans-serif ;
|
139
|
+
font-size: medium }
|
140
|
+
|
141
|
+
div.system-messages {
|
142
|
+
margin: 5em }
|
143
|
+
|
144
|
+
div.system-messages h1 {
|
145
|
+
color: red }
|
146
|
+
|
147
|
+
div.system-message {
|
148
|
+
border: medium outset ;
|
149
|
+
padding: 1em }
|
150
|
+
|
151
|
+
div.system-message p.system-message-title {
|
152
|
+
color: red ;
|
153
|
+
font-weight: bold }
|
154
|
+
|
155
|
+
div.topic {
|
156
|
+
margin: 2em }
|
157
|
+
|
158
|
+
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
159
|
+
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
160
|
+
margin-top: 0.4em }
|
161
|
+
|
162
|
+
h1.title {
|
163
|
+
text-align: center }
|
164
|
+
|
165
|
+
h2.subtitle {
|
166
|
+
text-align: center }
|
167
|
+
|
168
|
+
hr.docutils {
|
169
|
+
width: 75% }
|
170
|
+
|
171
|
+
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
172
|
+
clear: left ;
|
173
|
+
float: left ;
|
174
|
+
margin-right: 1em }
|
175
|
+
|
176
|
+
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
177
|
+
clear: right ;
|
178
|
+
float: right ;
|
179
|
+
margin-left: 1em }
|
180
|
+
|
181
|
+
img.align-center, .figure.align-center, object.align-center {
|
182
|
+
display: block;
|
183
|
+
margin-left: auto;
|
184
|
+
margin-right: auto;
|
185
|
+
}
|
186
|
+
|
187
|
+
table.align-center {
|
188
|
+
margin-left: auto;
|
189
|
+
margin-right: auto;
|
190
|
+
}
|
191
|
+
|
192
|
+
.align-left {
|
193
|
+
text-align: left }
|
194
|
+
|
195
|
+
.align-center {
|
196
|
+
clear: both ;
|
197
|
+
text-align: center }
|
198
|
+
|
199
|
+
.align-right {
|
200
|
+
text-align: right }
|
201
|
+
|
202
|
+
/* reset inner alignment in figures */
|
203
|
+
div.align-right {
|
204
|
+
text-align: inherit }
|
205
|
+
|
206
|
+
/* div.align-center * { */
|
207
|
+
/* text-align: left } */
|
208
|
+
|
209
|
+
.align-top {
|
210
|
+
vertical-align: top }
|
211
|
+
|
212
|
+
.align-middle {
|
213
|
+
vertical-align: middle }
|
214
|
+
|
215
|
+
.align-bottom {
|
216
|
+
vertical-align: bottom }
|
217
|
+
|
218
|
+
ol.simple, ul.simple {
|
219
|
+
margin-bottom: 1em }
|
220
|
+
|
221
|
+
ol.arabic {
|
222
|
+
list-style: decimal }
|
223
|
+
|
224
|
+
ol.loweralpha {
|
225
|
+
list-style: lower-alpha }
|
226
|
+
|
227
|
+
ol.upperalpha {
|
228
|
+
list-style: upper-alpha }
|
229
|
+
|
230
|
+
ol.lowerroman {
|
231
|
+
list-style: lower-roman }
|
232
|
+
|
233
|
+
ol.upperroman {
|
234
|
+
list-style: upper-roman }
|
235
|
+
|
236
|
+
p.attribution {
|
237
|
+
text-align: right ;
|
238
|
+
margin-left: 50% }
|
239
|
+
|
240
|
+
p.caption {
|
241
|
+
font-style: italic }
|
242
|
+
|
243
|
+
p.credits {
|
244
|
+
font-style: italic ;
|
245
|
+
font-size: smaller }
|
246
|
+
|
247
|
+
p.label {
|
248
|
+
white-space: nowrap }
|
249
|
+
|
250
|
+
p.rubric {
|
251
|
+
font-weight: bold ;
|
252
|
+
font-size: larger ;
|
253
|
+
color: maroon ;
|
254
|
+
text-align: center }
|
255
|
+
|
256
|
+
p.sidebar-title {
|
257
|
+
font-family: sans-serif ;
|
258
|
+
font-weight: bold ;
|
259
|
+
font-size: larger }
|
260
|
+
|
261
|
+
p.sidebar-subtitle {
|
262
|
+
font-family: sans-serif ;
|
263
|
+
font-weight: bold }
|
264
|
+
|
265
|
+
p.topic-title {
|
266
|
+
font-weight: bold }
|
267
|
+
|
268
|
+
pre.address {
|
269
|
+
margin-bottom: 0 ;
|
270
|
+
margin-top: 0 ;
|
271
|
+
font: inherit }
|
272
|
+
|
273
|
+
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
274
|
+
margin-left: 2em ;
|
275
|
+
margin-right: 2em }
|
276
|
+
|
277
|
+
pre.code .ln { color: grey; } /* line numbers */
|
278
|
+
pre.code, code { background-color: #eeeeee }
|
279
|
+
pre.code .comment, code .comment { color: #5C6576 }
|
280
|
+
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
281
|
+
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
282
|
+
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
283
|
+
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
284
|
+
pre.code .inserted, code .inserted { background-color: #A3D289}
|
285
|
+
|
286
|
+
span.classifier {
|
287
|
+
font-family: sans-serif ;
|
288
|
+
font-style: oblique }
|
289
|
+
|
290
|
+
span.classifier-delimiter {
|
291
|
+
font-family: sans-serif ;
|
292
|
+
font-weight: bold }
|
293
|
+
|
294
|
+
span.interpreted {
|
295
|
+
font-family: sans-serif }
|
296
|
+
|
297
|
+
span.option {
|
298
|
+
white-space: nowrap }
|
299
|
+
|
300
|
+
span.pre {
|
301
|
+
white-space: pre }
|
302
|
+
|
303
|
+
span.problematic {
|
304
|
+
color: red }
|
305
|
+
|
306
|
+
span.section-subtitle {
|
307
|
+
/* font-size relative to parent (h1..h6 element) */
|
308
|
+
font-size: 80% }
|
309
|
+
|
310
|
+
table.citation {
|
311
|
+
border-left: solid 1px gray;
|
312
|
+
margin-left: 1px }
|
313
|
+
|
314
|
+
table.docinfo {
|
315
|
+
margin: 2em 4em }
|
316
|
+
|
317
|
+
table.docutils {
|
318
|
+
margin-top: 0.5em ;
|
319
|
+
margin-bottom: 0.5em }
|
320
|
+
|
321
|
+
table.footnote {
|
322
|
+
border-left: solid 1px black;
|
323
|
+
margin-left: 1px }
|
324
|
+
|
325
|
+
table.docutils td, table.docutils th,
|
326
|
+
table.docinfo td, table.docinfo th {
|
327
|
+
padding-left: 0.5em ;
|
328
|
+
padding-right: 0.5em ;
|
329
|
+
vertical-align: top }
|
330
|
+
|
331
|
+
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
332
|
+
font-weight: bold ;
|
333
|
+
text-align: left ;
|
334
|
+
white-space: nowrap ;
|
335
|
+
padding-left: 0 }
|
336
|
+
|
337
|
+
/* "booktabs" style (no vertical lines) */
|
338
|
+
table.docutils.booktabs {
|
339
|
+
border: 0px;
|
340
|
+
border-top: 2px solid;
|
341
|
+
border-bottom: 2px solid;
|
342
|
+
border-collapse: collapse;
|
343
|
+
}
|
344
|
+
table.docutils.booktabs * {
|
345
|
+
border: 0px;
|
346
|
+
}
|
347
|
+
table.docutils.booktabs th {
|
348
|
+
border-bottom: thin solid;
|
349
|
+
text-align: left;
|
350
|
+
}
|
351
|
+
|
352
|
+
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
353
|
+
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
354
|
+
font-size: 100% }
|
355
|
+
|
356
|
+
ul.auto-toc {
|
357
|
+
list-style-type: none }
|
358
|
+
|
359
|
+
</style>
|
360
|
+
</head>
|
361
|
+
<body>
|
362
|
+
<div class="document" id="sale-commission-product-criteria-domain">
|
363
|
+
<h1 class="title">Sale Commission Product Criteria Domain</h1>
|
364
|
+
|
365
|
+
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
366
|
+
!! This file is generated by oca-gen-addon-readme !!
|
367
|
+
!! changes will be overwritten. !!
|
368
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
369
|
+
!! source digest: sha256:163032362b1420f26a24755c50985afa774a2d1243a187a5086948a14e65e74e
|
370
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
371
|
+
<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/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/commission/tree/16.0/sale_commission_product_criteria_domain"><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-sale_commission_product_criteria_domain"><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>
|
372
|
+
<p>This module allows to limit applied commission items for specific groups.</p>
|
373
|
+
<p>This module allows to manage the following commission structure use case:</p>
|
374
|
+
<blockquote>
|
375
|
+
<p>Agent A receives commission 50 when selling product 1 to customer X</p>
|
376
|
+
<p>Agent A receives commission 20 when selling product 1 to customer Y</p>
|
377
|
+
</blockquote>
|
378
|
+
<p>This implementation is based on pricelist-like Commission Type structure provided by sale_commission_product_criteria.</p>
|
379
|
+
<p><strong>Table of contents</strong></p>
|
380
|
+
<div class="contents local topic" id="contents">
|
381
|
+
<ul class="simple">
|
382
|
+
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
383
|
+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
384
|
+
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
385
|
+
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
386
|
+
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
387
|
+
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
|
388
|
+
</ul>
|
389
|
+
</li>
|
390
|
+
</ul>
|
391
|
+
</div>
|
392
|
+
<div class="section" id="usage">
|
393
|
+
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
394
|
+
<p>Go to Commissions > Configuration > Commission Type Items Groups</p>
|
395
|
+
<p>Create one or more new Groups, eg. “Italy” and “Spain”</p>
|
396
|
+
<p>Create new Commission type, select type “Product Criteria (with restrictions)”, eg: “Southern Europe”</p>
|
397
|
+
<p>Add lines to Commission type; for each line one Group must be set, eg.</p>
|
398
|
+
<blockquote>
|
399
|
+
<p>Product: Conference Chair, value: $20, group: Italy</p>
|
400
|
+
<p>Product: Conference Chair, value: $10, group: Spain</p>
|
401
|
+
</blockquote>
|
402
|
+
<p>Go to Agent A, assign Commission type: “Southern Europe” > add “Allowed Commission Groups”: “Italy”, “Spain”</p>
|
403
|
+
<p>In this way, we are allowing Commission type lines for both “Spain” and “Italy” to be applied to this agent.</p>
|
404
|
+
<p>Go to customer X, set agent: “Agent A” > in table “Commission items group” set group “Spain”</p>
|
405
|
+
<p>Go to customer Y, set agent: “Agent A” > in table “Commission items group” set group “Italy”</p>
|
406
|
+
<p>On sales for customer X, only Commission type lines with group “Spain” will be applied to agent; on sales for customer Y, only Commission type lines with group “Italy” will be applied to agent.</p>
|
407
|
+
</div>
|
408
|
+
<div class="section" id="bug-tracker">
|
409
|
+
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
410
|
+
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/commission/issues">GitHub Issues</a>.
|
411
|
+
In case of trouble, please check there if your issue has already been reported.
|
412
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
413
|
+
<a class="reference external" href="https://github.com/OCA/commission/issues/new?body=module:%20sale_commission_product_criteria_domain%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
414
|
+
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
415
|
+
</div>
|
416
|
+
<div class="section" id="credits">
|
417
|
+
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
418
|
+
<div class="section" id="authors">
|
419
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
420
|
+
<ul class="simple">
|
421
|
+
<li>Ilyas</li>
|
422
|
+
<li>Ooops404</li>
|
423
|
+
</ul>
|
424
|
+
</div>
|
425
|
+
<div class="section" id="contributors">
|
426
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
427
|
+
<ul class="simple">
|
428
|
+
<li><a class="reference external" href="https://www.ooops404.com">Ooops404</a>:<ul>
|
429
|
+
<li>Ilyas <<a class="reference external" href="mailto:irazor147@gmail.com">irazor147@gmail.com</a>></li>
|
430
|
+
</ul>
|
431
|
+
</li>
|
432
|
+
<li><a class="reference external" href="https://aiontech.company/">Aion Tech</a>:<ul>
|
433
|
+
<li>Simone Rubino <<a class="reference external" href="mailto:simone.rubino@aion-tech.it">simone.rubino@aion-tech.it</a>></li>
|
434
|
+
</ul>
|
435
|
+
</li>
|
436
|
+
</ul>
|
437
|
+
</div>
|
438
|
+
<div class="section" id="maintainers">
|
439
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
|
440
|
+
<p>This module is maintained by the OCA.</p>
|
441
|
+
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
442
|
+
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
443
|
+
mission is to support the collaborative development of Odoo features and
|
444
|
+
promote its widespread use.</p>
|
445
|
+
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
446
|
+
<p><a class="reference external image-reference" href="https://github.com/ilyasProgrammer"><img alt="ilyasProgrammer" src="https://github.com/ilyasProgrammer.png?size=40px" /></a></p>
|
447
|
+
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/commission/tree/16.0/sale_commission_product_criteria_domain">OCA/commission</a> project on GitHub.</p>
|
448
|
+
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
449
|
+
</div>
|
450
|
+
</div>
|
451
|
+
</div>
|
452
|
+
</body>
|
453
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
from . import test_sale_commission_product_criteria_domain
|