odoo-addon-l10n-br-fiscal-edi 15.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/l10n_br_fiscal_edi/README.rst +124 -0
- odoo/addons/l10n_br_fiscal_edi/__init__.py +2 -0
- odoo/addons/l10n_br_fiscal_edi/__manifest__.py +41 -0
- odoo/addons/l10n_br_fiscal_edi/i18n/l10n_br_fiscal_edi.pot +896 -0
- odoo/addons/l10n_br_fiscal_edi/models/__init__.py +4 -0
- odoo/addons/l10n_br_fiscal_edi/models/document.py +294 -0
- odoo/addons/l10n_br_fiscal_edi/models/document_event.py +392 -0
- odoo/addons/l10n_br_fiscal_edi/models/document_workflow.py +387 -0
- odoo/addons/l10n_br_fiscal_edi/models/invalidate_number.py +53 -0
- odoo/addons/l10n_br_fiscal_edi/readme/CONTRIBUTORS.md +5 -0
- odoo/addons/l10n_br_fiscal_edi/readme/DESCRIPTION.md +6 -0
- odoo/addons/l10n_br_fiscal_edi/readme/ROADMAP.md +6 -0
- odoo/addons/l10n_br_fiscal_edi/readme/USAGE.md +7 -0
- odoo/addons/l10n_br_fiscal_edi/security/ir.model.access.csv +7 -0
- odoo/addons/l10n_br_fiscal_edi/static/description/icon.png +0 -0
- odoo/addons/l10n_br_fiscal_edi/static/description/index.html +460 -0
- odoo/addons/l10n_br_fiscal_edi/tests/__init__.py +1 -0
- odoo/addons/l10n_br_fiscal_edi/tests/test_fiscal_document_generic.py +1191 -0
- odoo/addons/l10n_br_fiscal_edi/tests/test_tax_benefit.py +74 -0
- odoo/addons/l10n_br_fiscal_edi/tests/test_workflow.py +118 -0
- odoo/addons/l10n_br_fiscal_edi/views/document_event_report.xml +15 -0
- odoo/addons/l10n_br_fiscal_edi/views/document_event_template.xml +114 -0
- odoo/addons/l10n_br_fiscal_edi/views/document_event_view.xml +68 -0
- odoo/addons/l10n_br_fiscal_edi/views/document_view.xml +77 -0
- odoo/addons/l10n_br_fiscal_edi/views/invalidate_number_view.xml +19 -0
- odoo/addons/l10n_br_fiscal_edi/views/l10n_br_fiscal_action.xml +38 -0
- odoo/addons/l10n_br_fiscal_edi/views/l10n_br_fiscal_menu.xml +23 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/__init__.py +7 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/base_wizard_mixin.py +13 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_cancel_wizard.py +20 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_cancel_wizard.xml +30 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_correction_wizard.py +17 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_correction_wizard.xml +30 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_import_wizard_mixin.py +132 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_import_wizard_mixin.xml +44 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/document_status_wizard.xml +58 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/invalidate_number_wizard.py +33 -0
- odoo/addons/l10n_br_fiscal_edi/wizards/invalidate_number_wizard.xml +30 -0
- odoo_addon_l10n_br_fiscal_edi-15.0.1.0.0.2.dist-info/METADATA +141 -0
- odoo_addon_l10n_br_fiscal_edi-15.0.1.0.0.2.dist-info/RECORD +42 -0
- odoo_addon_l10n_br_fiscal_edi-15.0.1.0.0.2.dist-info/WHEEL +5 -0
- odoo_addon_l10n_br_fiscal_edi-15.0.1.0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,460 @@
|
|
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>Common EDI fiscal features</title>
|
7
|
+
<style type="text/css">
|
8
|
+
|
9
|
+
/*
|
10
|
+
:Author: David Goodger (goodger@python.org)
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z 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
|
+
Despite the name, some widely supported CSS2 features are used.
|
16
|
+
|
17
|
+
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
18
|
+
customize this style sheet.
|
19
|
+
*/
|
20
|
+
|
21
|
+
/* used to remove borders from tables and images */
|
22
|
+
.borderless, table.borderless td, table.borderless th {
|
23
|
+
border: 0 }
|
24
|
+
|
25
|
+
table.borderless td, table.borderless th {
|
26
|
+
/* Override padding for "table.docutils td" with "! important".
|
27
|
+
The right padding separates the table cells. */
|
28
|
+
padding: 0 0.5em 0 0 ! important }
|
29
|
+
|
30
|
+
.first {
|
31
|
+
/* Override more specific margin styles with "! important". */
|
32
|
+
margin-top: 0 ! important }
|
33
|
+
|
34
|
+
.last, .with-subtitle {
|
35
|
+
margin-bottom: 0 ! important }
|
36
|
+
|
37
|
+
.hidden {
|
38
|
+
display: none }
|
39
|
+
|
40
|
+
.subscript {
|
41
|
+
vertical-align: sub;
|
42
|
+
font-size: smaller }
|
43
|
+
|
44
|
+
.superscript {
|
45
|
+
vertical-align: super;
|
46
|
+
font-size: smaller }
|
47
|
+
|
48
|
+
a.toc-backref {
|
49
|
+
text-decoration: none ;
|
50
|
+
color: black }
|
51
|
+
|
52
|
+
blockquote.epigraph {
|
53
|
+
margin: 2em 5em ; }
|
54
|
+
|
55
|
+
dl.docutils dd {
|
56
|
+
margin-bottom: 0.5em }
|
57
|
+
|
58
|
+
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
59
|
+
overflow: hidden;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
63
|
+
dl.docutils dt {
|
64
|
+
font-weight: bold }
|
65
|
+
*/
|
66
|
+
|
67
|
+
div.abstract {
|
68
|
+
margin: 2em 5em }
|
69
|
+
|
70
|
+
div.abstract p.topic-title {
|
71
|
+
font-weight: bold ;
|
72
|
+
text-align: center }
|
73
|
+
|
74
|
+
div.admonition, div.attention, div.caution, div.danger, div.error,
|
75
|
+
div.hint, div.important, div.note, div.tip, div.warning {
|
76
|
+
margin: 2em ;
|
77
|
+
border: medium outset ;
|
78
|
+
padding: 1em }
|
79
|
+
|
80
|
+
div.admonition p.admonition-title, div.hint p.admonition-title,
|
81
|
+
div.important p.admonition-title, div.note p.admonition-title,
|
82
|
+
div.tip p.admonition-title {
|
83
|
+
font-weight: bold ;
|
84
|
+
font-family: sans-serif }
|
85
|
+
|
86
|
+
div.attention p.admonition-title, div.caution p.admonition-title,
|
87
|
+
div.danger p.admonition-title, div.error p.admonition-title,
|
88
|
+
div.warning p.admonition-title, .code .error {
|
89
|
+
color: red ;
|
90
|
+
font-weight: bold ;
|
91
|
+
font-family: sans-serif }
|
92
|
+
|
93
|
+
/* Uncomment (and remove this text!) to get reduced vertical space in
|
94
|
+
compound paragraphs.
|
95
|
+
div.compound .compound-first, div.compound .compound-middle {
|
96
|
+
margin-bottom: 0.5em }
|
97
|
+
|
98
|
+
div.compound .compound-last, div.compound .compound-middle {
|
99
|
+
margin-top: 0.5em }
|
100
|
+
*/
|
101
|
+
|
102
|
+
div.dedication {
|
103
|
+
margin: 2em 5em ;
|
104
|
+
text-align: center ;
|
105
|
+
font-style: italic }
|
106
|
+
|
107
|
+
div.dedication p.topic-title {
|
108
|
+
font-weight: bold ;
|
109
|
+
font-style: normal }
|
110
|
+
|
111
|
+
div.figure {
|
112
|
+
margin-left: 2em ;
|
113
|
+
margin-right: 2em }
|
114
|
+
|
115
|
+
div.footer, div.header {
|
116
|
+
clear: both;
|
117
|
+
font-size: smaller }
|
118
|
+
|
119
|
+
div.line-block {
|
120
|
+
display: block ;
|
121
|
+
margin-top: 1em ;
|
122
|
+
margin-bottom: 1em }
|
123
|
+
|
124
|
+
div.line-block div.line-block {
|
125
|
+
margin-top: 0 ;
|
126
|
+
margin-bottom: 0 ;
|
127
|
+
margin-left: 1.5em }
|
128
|
+
|
129
|
+
div.sidebar {
|
130
|
+
margin: 0 0 0.5em 1em ;
|
131
|
+
border: medium outset ;
|
132
|
+
padding: 1em ;
|
133
|
+
background-color: #ffffee ;
|
134
|
+
width: 40% ;
|
135
|
+
float: right ;
|
136
|
+
clear: right }
|
137
|
+
|
138
|
+
div.sidebar p.rubric {
|
139
|
+
font-family: sans-serif ;
|
140
|
+
font-size: medium }
|
141
|
+
|
142
|
+
div.system-messages {
|
143
|
+
margin: 5em }
|
144
|
+
|
145
|
+
div.system-messages h1 {
|
146
|
+
color: red }
|
147
|
+
|
148
|
+
div.system-message {
|
149
|
+
border: medium outset ;
|
150
|
+
padding: 1em }
|
151
|
+
|
152
|
+
div.system-message p.system-message-title {
|
153
|
+
color: red ;
|
154
|
+
font-weight: bold }
|
155
|
+
|
156
|
+
div.topic {
|
157
|
+
margin: 2em }
|
158
|
+
|
159
|
+
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
160
|
+
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
161
|
+
margin-top: 0.4em }
|
162
|
+
|
163
|
+
h1.title {
|
164
|
+
text-align: center }
|
165
|
+
|
166
|
+
h2.subtitle {
|
167
|
+
text-align: center }
|
168
|
+
|
169
|
+
hr.docutils {
|
170
|
+
width: 75% }
|
171
|
+
|
172
|
+
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
173
|
+
clear: left ;
|
174
|
+
float: left ;
|
175
|
+
margin-right: 1em }
|
176
|
+
|
177
|
+
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
178
|
+
clear: right ;
|
179
|
+
float: right ;
|
180
|
+
margin-left: 1em }
|
181
|
+
|
182
|
+
img.align-center, .figure.align-center, object.align-center {
|
183
|
+
display: block;
|
184
|
+
margin-left: auto;
|
185
|
+
margin-right: auto;
|
186
|
+
}
|
187
|
+
|
188
|
+
table.align-center {
|
189
|
+
margin-left: auto;
|
190
|
+
margin-right: auto;
|
191
|
+
}
|
192
|
+
|
193
|
+
.align-left {
|
194
|
+
text-align: left }
|
195
|
+
|
196
|
+
.align-center {
|
197
|
+
clear: both ;
|
198
|
+
text-align: center }
|
199
|
+
|
200
|
+
.align-right {
|
201
|
+
text-align: right }
|
202
|
+
|
203
|
+
/* reset inner alignment in figures */
|
204
|
+
div.align-right {
|
205
|
+
text-align: inherit }
|
206
|
+
|
207
|
+
/* div.align-center * { */
|
208
|
+
/* text-align: left } */
|
209
|
+
|
210
|
+
.align-top {
|
211
|
+
vertical-align: top }
|
212
|
+
|
213
|
+
.align-middle {
|
214
|
+
vertical-align: middle }
|
215
|
+
|
216
|
+
.align-bottom {
|
217
|
+
vertical-align: bottom }
|
218
|
+
|
219
|
+
ol.simple, ul.simple {
|
220
|
+
margin-bottom: 1em }
|
221
|
+
|
222
|
+
ol.arabic {
|
223
|
+
list-style: decimal }
|
224
|
+
|
225
|
+
ol.loweralpha {
|
226
|
+
list-style: lower-alpha }
|
227
|
+
|
228
|
+
ol.upperalpha {
|
229
|
+
list-style: upper-alpha }
|
230
|
+
|
231
|
+
ol.lowerroman {
|
232
|
+
list-style: lower-roman }
|
233
|
+
|
234
|
+
ol.upperroman {
|
235
|
+
list-style: upper-roman }
|
236
|
+
|
237
|
+
p.attribution {
|
238
|
+
text-align: right ;
|
239
|
+
margin-left: 50% }
|
240
|
+
|
241
|
+
p.caption {
|
242
|
+
font-style: italic }
|
243
|
+
|
244
|
+
p.credits {
|
245
|
+
font-style: italic ;
|
246
|
+
font-size: smaller }
|
247
|
+
|
248
|
+
p.label {
|
249
|
+
white-space: nowrap }
|
250
|
+
|
251
|
+
p.rubric {
|
252
|
+
font-weight: bold ;
|
253
|
+
font-size: larger ;
|
254
|
+
color: maroon ;
|
255
|
+
text-align: center }
|
256
|
+
|
257
|
+
p.sidebar-title {
|
258
|
+
font-family: sans-serif ;
|
259
|
+
font-weight: bold ;
|
260
|
+
font-size: larger }
|
261
|
+
|
262
|
+
p.sidebar-subtitle {
|
263
|
+
font-family: sans-serif ;
|
264
|
+
font-weight: bold }
|
265
|
+
|
266
|
+
p.topic-title {
|
267
|
+
font-weight: bold }
|
268
|
+
|
269
|
+
pre.address {
|
270
|
+
margin-bottom: 0 ;
|
271
|
+
margin-top: 0 ;
|
272
|
+
font: inherit }
|
273
|
+
|
274
|
+
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
275
|
+
margin-left: 2em ;
|
276
|
+
margin-right: 2em }
|
277
|
+
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
279
|
+
pre.code, code { background-color: #eeeeee }
|
280
|
+
pre.code .comment, code .comment { color: #5C6576 }
|
281
|
+
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
282
|
+
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
283
|
+
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
284
|
+
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
285
|
+
pre.code .inserted, code .inserted { background-color: #A3D289}
|
286
|
+
|
287
|
+
span.classifier {
|
288
|
+
font-family: sans-serif ;
|
289
|
+
font-style: oblique }
|
290
|
+
|
291
|
+
span.classifier-delimiter {
|
292
|
+
font-family: sans-serif ;
|
293
|
+
font-weight: bold }
|
294
|
+
|
295
|
+
span.interpreted {
|
296
|
+
font-family: sans-serif }
|
297
|
+
|
298
|
+
span.option {
|
299
|
+
white-space: nowrap }
|
300
|
+
|
301
|
+
span.pre {
|
302
|
+
white-space: pre }
|
303
|
+
|
304
|
+
span.problematic, pre.problematic {
|
305
|
+
color: red }
|
306
|
+
|
307
|
+
span.section-subtitle {
|
308
|
+
/* font-size relative to parent (h1..h6 element) */
|
309
|
+
font-size: 80% }
|
310
|
+
|
311
|
+
table.citation {
|
312
|
+
border-left: solid 1px gray;
|
313
|
+
margin-left: 1px }
|
314
|
+
|
315
|
+
table.docinfo {
|
316
|
+
margin: 2em 4em }
|
317
|
+
|
318
|
+
table.docutils {
|
319
|
+
margin-top: 0.5em ;
|
320
|
+
margin-bottom: 0.5em }
|
321
|
+
|
322
|
+
table.footnote {
|
323
|
+
border-left: solid 1px black;
|
324
|
+
margin-left: 1px }
|
325
|
+
|
326
|
+
table.docutils td, table.docutils th,
|
327
|
+
table.docinfo td, table.docinfo th {
|
328
|
+
padding-left: 0.5em ;
|
329
|
+
padding-right: 0.5em ;
|
330
|
+
vertical-align: top }
|
331
|
+
|
332
|
+
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
333
|
+
font-weight: bold ;
|
334
|
+
text-align: left ;
|
335
|
+
white-space: nowrap ;
|
336
|
+
padding-left: 0 }
|
337
|
+
|
338
|
+
/* "booktabs" style (no vertical lines) */
|
339
|
+
table.docutils.booktabs {
|
340
|
+
border: 0px;
|
341
|
+
border-top: 2px solid;
|
342
|
+
border-bottom: 2px solid;
|
343
|
+
border-collapse: collapse;
|
344
|
+
}
|
345
|
+
table.docutils.booktabs * {
|
346
|
+
border: 0px;
|
347
|
+
}
|
348
|
+
table.docutils.booktabs th {
|
349
|
+
border-bottom: thin solid;
|
350
|
+
text-align: left;
|
351
|
+
}
|
352
|
+
|
353
|
+
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
354
|
+
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
355
|
+
font-size: 100% }
|
356
|
+
|
357
|
+
ul.auto-toc {
|
358
|
+
list-style-type: none }
|
359
|
+
|
360
|
+
</style>
|
361
|
+
</head>
|
362
|
+
<body>
|
363
|
+
<div class="document" id="common-edi-fiscal-features">
|
364
|
+
<h1 class="title">Common EDI fiscal features</h1>
|
365
|
+
|
366
|
+
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
367
|
+
!! This file is generated by oca-gen-addon-readme !!
|
368
|
+
!! changes will be overwritten. !!
|
369
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
370
|
+
!! source digest: sha256:2aef138ea880eef26ea27fdbf1da1ce3e5bb9992bebe8a52c807e00d0303406f
|
371
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
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/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-brazil/tree/15.0/l10n_br_fiscal_edi"><img alt="OCA/l10n-brazil" src="https://img.shields.io/badge/github-OCA%2Fl10n--brazil-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-brazil-15-0/l10n-brazil-15-0-l10n_br_fiscal_edi"><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/l10n-brazil&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
|
+
<p>Este módulo estende o módulo <tt class="docutils literal">l10n_br_fiscal</tt> e cuida da parte de EDI
|
374
|
+
(Electronic Data Interchange) que é comum entre os vários documentos
|
375
|
+
fiscais no Brasil. Ele introduz os modelos de eventos de transmissão, de
|
376
|
+
correções… Alem disso ele cuida das possíveis transições de estado do
|
377
|
+
documento fiscal em função dos retornos dos webservices (campo
|
378
|
+
<tt class="docutils literal">state_edoc</tt>).</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="#known-issues-roadmap" id="toc-entry-2">Known issues / Roadmap</a></li>
|
384
|
+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
|
385
|
+
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
|
386
|
+
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
|
387
|
+
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
|
388
|
+
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
|
389
|
+
</ul>
|
390
|
+
</li>
|
391
|
+
</ul>
|
392
|
+
</div>
|
393
|
+
<div class="section" id="usage">
|
394
|
+
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
395
|
+
<p>Use os botões na barra de header do documento fiscal para alterar o
|
396
|
+
estado do documento fiscal, para abrir os wizards e para interagir com a
|
397
|
+
fazenda… Quando o módulo <tt class="docutils literal">l10n_br_account</tt> ou alguns módulos de
|
398
|
+
documentos fiscais específicos como <tt class="docutils literal">l10n_br_nfe</tt> ou <tt class="docutils literal">l10n_br_nfse</tt>
|
399
|
+
são instalados, alguns métodos de transição de estado do módulo
|
400
|
+
<tt class="docutils literal">l10n_br_fiscal_edi</tt> são chamados automaticamente, por exemplo ao
|
401
|
+
confirmar ou cancelar uma nota.</p>
|
402
|
+
</div>
|
403
|
+
<div class="section" id="known-issues-roadmap">
|
404
|
+
<h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
|
405
|
+
<p>O código deste módulo foi feito antes dos repos <tt class="docutils literal">OCA/edi</tt> e
|
406
|
+
<tt class="docutils literal"><span class="pre">OCA/edi-framework</span></tt>. O código do <tt class="docutils literal">document_workflow.py</tt> por exemplo
|
407
|
+
foi uma espécie de tradução em código do “workflow de state machine” que
|
408
|
+
tinha sido customizado para a NFe na versão 8.0 mas que teve que ser
|
409
|
+
re-escrito quando o engine de workflow foi removido na versão 10.0.
|
410
|
+
Nisso o código deste módulo tem bastante possibilidades de melhorias…</p>
|
411
|
+
</div>
|
412
|
+
<div class="section" id="bug-tracker">
|
413
|
+
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
|
414
|
+
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/l10n-brazil/issues">GitHub Issues</a>.
|
415
|
+
In case of trouble, please check there if your issue has already been reported.
|
416
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
417
|
+
<a class="reference external" href="https://github.com/OCA/l10n-brazil/issues/new?body=module:%20l10n_br_fiscal_edi%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
418
|
+
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
419
|
+
</div>
|
420
|
+
<div class="section" id="credits">
|
421
|
+
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
|
422
|
+
<div class="section" id="authors">
|
423
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
|
424
|
+
<ul class="simple">
|
425
|
+
<li>Akretion</li>
|
426
|
+
<li>KMEE</li>
|
427
|
+
</ul>
|
428
|
+
</div>
|
429
|
+
<div class="section" id="contributors">
|
430
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
|
431
|
+
<ul class="simple">
|
432
|
+
<li><a class="reference external" href="https://www.akretion.com/pt-BR">Akretion</a>:<ul>
|
433
|
+
<li>Renato Lima <<a class="reference external" href="mailto:renato.lima@akretion.com.br">renato.lima@akretion.com.br</a>></li>
|
434
|
+
<li>Raphaël Valyi <<a class="reference external" href="mailto:raphael.valyi@akretion.com.br">raphael.valyi@akretion.com.br</a>></li>
|
435
|
+
</ul>
|
436
|
+
</li>
|
437
|
+
<li><a class="reference external" href="https://www.kmee.com.br">KMEE</a>:<ul>
|
438
|
+
<li>Luis Felipe Mileo <<a class="reference external" href="mailto:mileo@kmee.com.br">mileo@kmee.com.br</a>></li>
|
439
|
+
</ul>
|
440
|
+
</li>
|
441
|
+
</ul>
|
442
|
+
</div>
|
443
|
+
<div class="section" id="maintainers">
|
444
|
+
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
445
|
+
<p>This module is maintained by the OCA.</p>
|
446
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
447
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
448
|
+
</a>
|
449
|
+
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
450
|
+
mission is to support the collaborative development of Odoo features and
|
451
|
+
promote its widespread use.</p>
|
452
|
+
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainers</a>:</p>
|
453
|
+
<p><a class="reference external image-reference" href="https://github.com/renatonlima"><img alt="renatonlima" src="https://github.com/renatonlima.png?size=40px" /></a> <a class="reference external image-reference" href="https://github.com/rvalyi"><img alt="rvalyi" src="https://github.com/rvalyi.png?size=40px" /></a> <a class="reference external image-reference" href="https://github.com/mileo"><img alt="mileo" src="https://github.com/mileo.png?size=40px" /></a></p>
|
454
|
+
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/l10n-brazil/tree/15.0/l10n_br_fiscal_edi">OCA/l10n-brazil</a> project on GitHub.</p>
|
455
|
+
<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>
|
456
|
+
</div>
|
457
|
+
</div>
|
458
|
+
</div>
|
459
|
+
</body>
|
460
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
from . import test_workflow
|