wbaccounting 2.2.4__tar.gz → 2.2.6__tar.gz

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.
Files changed (103) hide show
  1. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/PKG-INFO +2 -2
  2. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/pyproject.toml +2 -6
  3. wbaccounting-2.2.4/wbaccounting/fixtures/accounting.json +0 -578
  4. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/.gitignore +0 -0
  5. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/__init__.py +0 -0
  6. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/__init__.py +0 -0
  7. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/booking_entry.py +0 -0
  8. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/entry_accounting_information.py +0 -0
  9. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/invoice.py +0 -0
  10. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/invoice_type.py +0 -0
  11. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/admin/transactions.py +0 -0
  12. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/apps.py +0 -0
  13. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/dynamic_preferences_registry.py +0 -0
  14. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/factories/__init__.py +0 -0
  15. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/factories/booking_entry.py +0 -0
  16. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/factories/entry_accounting_information.py +0 -0
  17. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/factories/invoice.py +0 -0
  18. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/factories/transactions.py +0 -0
  19. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/files/__init__.py +0 -0
  20. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/files/invoice_document_file.py +0 -0
  21. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/files/utils.py +0 -0
  22. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/generators/__init__.py +0 -0
  23. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/generators/base.py +0 -0
  24. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/io/handlers/__init__.py +0 -0
  25. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/io/handlers/transactions.py +0 -0
  26. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/io/parsers/__init__.py +0 -0
  27. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/io/parsers/societe_generale_lux.py +0 -0
  28. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/io/parsers/societe_generale_lux_prenotification.py +0 -0
  29. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0001_initial_squashed_squashed_0005_alter_bookingentry_counterparty_and_more.py +0 -0
  30. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0006_alter_invoice_status.py +0 -0
  31. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0007_alter_invoice_options.py +0 -0
  32. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0008_alter_invoice_options.py +0 -0
  33. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0009_invoicetype_alter_bookingentry_options_and_more.py +0 -0
  34. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0010_alter_bookingentry_options.py +0 -0
  35. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0011_transaction.py +0 -0
  36. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/0012_entryaccountinginformation_external_invoice_users.py +0 -0
  37. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/migrations/__init__.py +0 -0
  38. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/__init__.py +0 -0
  39. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/booking_entry.py +0 -0
  40. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/entry_accounting_information.py +0 -0
  41. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/invoice.py +0 -0
  42. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/invoice_type.py +0 -0
  43. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/model_tasks.py +0 -0
  44. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/models/transactions.py +0 -0
  45. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/permissions.py +0 -0
  46. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/processors/__init__.py +0 -0
  47. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/processors/dummy_processor.py +0 -0
  48. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/__init__.py +0 -0
  49. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/booking_entry.py +0 -0
  50. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/consolidated_invoice.py +0 -0
  51. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/entry_accounting_information.py +0 -0
  52. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/invoice.py +0 -0
  53. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/invoice_type.py +0 -0
  54. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/serializers/transactions.py +0 -0
  55. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/__init__.py +0 -0
  56. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/conftest.py +0 -0
  57. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_displays/__init__.py +0 -0
  58. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_displays/test_booking_entries.py +0 -0
  59. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/__init__.py +0 -0
  60. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/test_booking_entries.py +0 -0
  61. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/test_entry_accounting_information.py +0 -0
  62. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/test_invoice_types.py +0 -0
  63. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/test_invoices.py +0 -0
  64. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_models/test_transactions.py +0 -0
  65. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_processors.py +0 -0
  66. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_serializers/__init__.py +0 -0
  67. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_serializers/test_booking_entries.py +0 -0
  68. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_serializers/test_entry_accounting_information.py +0 -0
  69. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_serializers/test_invoice_types.py +0 -0
  70. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/tests/test_serializers/test_transactions.py +0 -0
  71. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/urls.py +0 -0
  72. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/__init__.py +0 -0
  73. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/booking_entry.py +0 -0
  74. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/buttons/__init__.py +0 -0
  75. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/buttons/booking_entry.py +0 -0
  76. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/buttons/entry_accounting_information.py +0 -0
  77. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/buttons/invoice.py +0 -0
  78. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/cashflows.py +0 -0
  79. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/__init__.py +0 -0
  80. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/booking_entry.py +0 -0
  81. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/cashflows.py +0 -0
  82. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/entry_accounting_information.py +0 -0
  83. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/invoice.py +0 -0
  84. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/invoice_type.py +0 -0
  85. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/display/transactions.py +0 -0
  86. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/endpoints/__init__.py +0 -0
  87. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/endpoints/invoice.py +0 -0
  88. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/entry_accounting_information.py +0 -0
  89. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/invoice.py +0 -0
  90. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/invoice_type.py +0 -0
  91. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/__init__.py +0 -0
  92. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/booking_entry.py +0 -0
  93. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/cashflows.py +0 -0
  94. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/entry_accounting_information.py +0 -0
  95. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/invoice.py +0 -0
  96. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/invoice_type.py +0 -0
  97. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/menu/transactions.py +0 -0
  98. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/titles/__init__.py +0 -0
  99. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/titles/booking_entry.py +0 -0
  100. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/titles/entry_accounting_information.py +0 -0
  101. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/titles/invoice.py +0 -0
  102. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/titles/invoice_type.py +0 -0
  103. {wbaccounting-2.2.4 → wbaccounting-2.2.6}/wbaccounting/viewsets/transactions.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: wbaccounting
3
- Version: 2.2.4
3
+ Version: 2.2.6
4
4
  Summary: A workbench module for managing invoicing and simple accounting.
5
5
  Author-email: Christopher Wittlinger <c.wittlinger@stainly.com>
6
6
  Requires-Dist: reportlab==3.*
@@ -19,12 +19,8 @@ package = true
19
19
  [tool.hatch.version]
20
20
  path = "../../pyproject.toml"
21
21
 
22
- [tool.hatch.build.targets.sdist]
23
- include = ["wbaccounting/*"]
24
-
25
- [tool.hatch.build.targets.wheel]
26
- packages = ["wbaccounting"]
27
- only-packages = true
22
+ [tool.hatch.build]
23
+ include = ["wbaccounting/**/*.py"]
28
24
 
29
25
  [build-system]
30
26
  requires = ["hatchling"]
@@ -1,578 +0,0 @@
1
- [
2
- {
3
- "model": "wbaccounting.bookingentry",
4
- "pk": 1,
5
- "fields": {
6
- "resolved": false,
7
- "title": "Test Booking Entry 1",
8
- "booking_date": "2023-12-14",
9
- "accrual_date": null,
10
- "resolved_date": null,
11
- "from_date": null,
12
- "to_date": null,
13
- "gross_value": "3846.1538",
14
- "net_value": "4000.0000",
15
- "vat": "0.0400",
16
- "currency": 4,
17
- "invoice": 1,
18
- "counterparty": 13,
19
- "main_booking_entry": null,
20
- "related_data": {},
21
- "calculated_value": null,
22
- "reference_date": "2023-12-14"
23
- }
24
- },
25
- {
26
- "model": "wbaccounting.bookingentry",
27
- "pk": 2,
28
- "fields": {
29
- "resolved": false,
30
- "title": "Test Booking Entry 2",
31
- "booking_date": "2023-12-14",
32
- "accrual_date": null,
33
- "resolved_date": null,
34
- "from_date": null,
35
- "to_date": null,
36
- "gross_value": "466.4571",
37
- "net_value": "489.7800",
38
- "vat": "0.0500",
39
- "currency": 4,
40
- "invoice": 3,
41
- "counterparty": 10,
42
- "main_booking_entry": null,
43
- "related_data": {},
44
- "calculated_value": null,
45
- "reference_date": "2023-12-14"
46
- }
47
- },
48
- {
49
- "model": "wbaccounting.bookingentry",
50
- "pk": 3,
51
- "fields": {
52
- "resolved": false,
53
- "title": "Test Booking Entry 3",
54
- "booking_date": "2023-12-14",
55
- "accrual_date": null,
56
- "resolved_date": null,
57
- "from_date": null,
58
- "to_date": null,
59
- "gross_value": "761.9706",
60
- "net_value": "777.2100",
61
- "vat": "0.0200",
62
- "currency": 4,
63
- "invoice": 2,
64
- "counterparty": 21,
65
- "main_booking_entry": null,
66
- "related_data": {},
67
- "calculated_value": null,
68
- "reference_date": "2023-12-14"
69
- }
70
- },
71
- {
72
- "model": "wbaccounting.bookingentry",
73
- "pk": 4,
74
- "fields": {
75
- "resolved": false,
76
- "title": "Test Booking Entry 4",
77
- "booking_date": "2023-12-14",
78
- "accrual_date": null,
79
- "resolved_date": null,
80
- "from_date": null,
81
- "to_date": null,
82
- "gross_value": "1088.6636",
83
- "net_value": "1164.8700",
84
- "vat": "0.0700",
85
- "currency": 45,
86
- "invoice": 2,
87
- "counterparty": 10,
88
- "main_booking_entry": null,
89
- "related_data": {},
90
- "calculated_value": null,
91
- "reference_date": "2023-12-14"
92
- }
93
- },
94
- {
95
- "model": "wbaccounting.invoice",
96
- "pk": 1,
97
- "fields": {
98
- "status": "DRAFT",
99
- "resolved": false,
100
- "title": "Test Invoice",
101
- "invoice_date": "2023-11-28",
102
- "invoice_currency": 45,
103
- "counterparty": 9,
104
- "text_above": "<p>Hello</p>",
105
- "text_below": "<p>World</p>",
106
- "is_counterparty_invoice": false,
107
- "type": 1,
108
- "reference_date": "2023-12-14",
109
- "gross_value": "7803.7903",
110
- "net_value": "8115.9420"
111
- }
112
- },
113
- {
114
- "model": "wbaccounting.invoice",
115
- "pk": 2,
116
- "fields": {
117
- "status": "DRAFT",
118
- "resolved": false,
119
- "title": "Test Invoice 2",
120
- "invoice_date": "2023-12-14",
121
- "invoice_currency": 4,
122
- "counterparty": 11,
123
- "text_above": null,
124
- "text_below": null,
125
- "is_counterparty_invoice": false,
126
- "type": 1,
127
- "reference_date": "2023-12-15",
128
- "gross_value": "1298.5262",
129
- "net_value": "1351.3245"
130
- }
131
- },
132
- {
133
- "model": "wbaccounting.invoice",
134
- "pk": 3,
135
- "fields": {
136
- "status": "DRAFT",
137
- "resolved": false,
138
- "title": "Test Invoice 3",
139
- "invoice_date": "2023-12-14",
140
- "invoice_currency": 45,
141
- "counterparty": 12,
142
- "text_above": null,
143
- "text_below": null,
144
- "is_counterparty_invoice": false,
145
- "type": 2,
146
- "reference_date": "2023-12-14",
147
- "gross_value": "946.4347",
148
- "net_value": "993.7565"
149
- }
150
- },
151
- {
152
- "model": "wbaccounting.invoicetype",
153
- "pk": 1,
154
- "fields": {
155
- "name": "Test Type",
156
- "slugify_name": "test type",
157
- "processor": null
158
- }
159
- },
160
- {
161
- "model": "wbaccounting.invoicetype",
162
- "pk": 2,
163
- "fields": {
164
- "name": "Test Type 2",
165
- "slugify_name": "test type 2",
166
- "processor": null
167
- }
168
- },
169
- {
170
- "model": "currency.currencyfxrates",
171
- "pk": 1,
172
- "fields": {
173
- "import_source": null,
174
- "date": "2023-12-12",
175
- "currency": 2,
176
- "value": "0.200000"
177
- }
178
- },
179
- {
180
- "model": "currency.currencyfxrates",
181
- "pk": 2,
182
- "fields": {
183
- "import_source": null,
184
- "date": "2023-12-12",
185
- "currency": 45,
186
- "value": "1.400000"
187
- }
188
- },
189
- {
190
- "model": "currency.currencyfxrates",
191
- "pk": 3,
192
- "fields": {
193
- "import_source": null,
194
- "date": "2023-12-12",
195
- "currency": 4,
196
- "value": "0.690000"
197
- }
198
- },
199
- {
200
- "model": "workflow.transition",
201
- "pk": 2,
202
- "fields": {
203
- "name": "Submit",
204
- "from_step": 3,
205
- "to_step": 4,
206
- "icon": "send"
207
- }
208
- },
209
- {
210
- "model": "workflow.transition",
211
- "pk": 3,
212
- "fields": {
213
- "name": "Abort",
214
- "from_step": 3,
215
- "to_step": 5,
216
- "icon": "cancel"
217
- }
218
- },
219
- {
220
- "model": "workflow.transition",
221
- "pk": 14,
222
- "fields": {
223
- "name": "Start Workflow",
224
- "from_step": 15,
225
- "to_step": 3,
226
- "icon": "start"
227
- }
228
- },
229
- {
230
- "model": "workflow.transition",
231
- "pk": 21,
232
- "fields": {
233
- "name": "Send To Customer",
234
- "from_step": 18,
235
- "to_step": 19,
236
- "icon": "forward_to_inbox"
237
- }
238
- },
239
- {
240
- "model": "workflow.transition",
241
- "pk": 22,
242
- "fields": {
243
- "name": "Send To Accountant",
244
- "from_step": 18,
245
- "to_step": 16,
246
- "icon": "forward_to_inbox"
247
- }
248
- },
249
- {
250
- "model": "workflow.transition",
251
- "pk": 24,
252
- "fields": {
253
- "name": "Join Accountant",
254
- "from_step": 16,
255
- "to_step": 20,
256
- "icon": "merge"
257
- }
258
- },
259
- {
260
- "model": "workflow.transition",
261
- "pk": 25,
262
- "fields": {
263
- "name": "Join Customer",
264
- "from_step": 19,
265
- "to_step": 20,
266
- "icon": "merge"
267
- }
268
- },
269
- {
270
- "model": "workflow.transition",
271
- "pk": 27,
272
- "fields": {
273
- "name": "Approve",
274
- "from_step": 4,
275
- "to_step": 21,
276
- "icon": "thumb_up_alt"
277
- }
278
- },
279
- {
280
- "model": "workflow.transition",
281
- "pk": 28,
282
- "fields": {
283
- "name": "Send",
284
- "from_step": 21,
285
- "to_step": 18,
286
- "icon": "forward_to_inbox"
287
- }
288
- },
289
- {
290
- "model": "workflow.transition",
291
- "pk": 29,
292
- "fields": {
293
- "name": "Pay",
294
- "from_step": 22,
295
- "to_step": 10,
296
- "icon": "request_quote"
297
- }
298
- },
299
- {
300
- "model": "workflow.transition",
301
- "pk": 30,
302
- "fields": {
303
- "name": "Send",
304
- "from_step": 20,
305
- "to_step": 22,
306
- "icon": "forward_to_inbox"
307
- }
308
- },
309
- {
310
- "model": "workflow.transition",
311
- "pk": 31,
312
- "fields": {
313
- "name": "Deny",
314
- "from_step": 4,
315
- "to_step": 3,
316
- "icon": "thumb_down_alt"
317
- }
318
- },
319
- {
320
- "model": "workflow.transition",
321
- "pk": 32,
322
- "fields": {
323
- "name": "Cancel",
324
- "from_step": 4,
325
- "to_step": 5,
326
- "icon": "cancel"
327
- }
328
- },
329
- {
330
- "model": "workflow.step",
331
- "pk": 3,
332
- "fields": {
333
- "name": "Draft",
334
- "workflow": 1,
335
- "code": 2,
336
- "status": "DRAFT",
337
- "step_type": "UserStep",
338
- "permission": null
339
- }
340
- },
341
- {
342
- "model": "workflow.step",
343
- "pk": 4,
344
- "fields": {
345
- "name": "Submitted",
346
- "workflow": 1,
347
- "code": 3,
348
- "status": "SUBMITTED",
349
- "step_type": "UserStep",
350
- "permission": 462
351
- }
352
- },
353
- {
354
- "model": "workflow.step",
355
- "pk": 5,
356
- "fields": {
357
- "name": "Cancelled",
358
- "workflow": 1,
359
- "code": 4,
360
- "status": "CANCELLED",
361
- "step_type": "FinishStep",
362
- "permission": null
363
- }
364
- },
365
- {
366
- "model": "workflow.step",
367
- "pk": 10,
368
- "fields": {
369
- "name": "Paid",
370
- "workflow": 1,
371
- "code": 11,
372
- "status": "PAID",
373
- "step_type": "FinishStep",
374
- "permission": null
375
- }
376
- },
377
- {
378
- "model": "workflow.step",
379
- "pk": 15,
380
- "fields": {
381
- "name": "Start",
382
- "workflow": 1,
383
- "code": 1,
384
- "status": "DRAFT",
385
- "step_type": "StartStep",
386
- "permission": null
387
- }
388
- },
389
- {
390
- "model": "workflow.step",
391
- "pk": 16,
392
- "fields": {
393
- "name": "Sent To Accountant",
394
- "workflow": 1,
395
- "code": 8,
396
- "status": "APPROVED",
397
- "step_type": "EmailStep",
398
- "permission": null
399
- }
400
- },
401
- {
402
- "model": "workflow.step",
403
- "pk": 18,
404
- "fields": {
405
- "name": "Split",
406
- "workflow": 1,
407
- "code": 6,
408
- "status": "APPROVED",
409
- "step_type": "SplitStep",
410
- "permission": null
411
- }
412
- },
413
- {
414
- "model": "workflow.step",
415
- "pk": 19,
416
- "fields": {
417
- "name": "Sent To Customer",
418
- "workflow": 1,
419
- "code": 7,
420
- "status": "APPROVED",
421
- "step_type": "EmailStep",
422
- "permission": null
423
- }
424
- },
425
- {
426
- "model": "workflow.step",
427
- "pk": 20,
428
- "fields": {
429
- "name": "Join",
430
- "workflow": 1,
431
- "code": 9,
432
- "status": "APPROVED",
433
- "step_type": "JoinStep",
434
- "permission": null
435
- }
436
- },
437
- {
438
- "model": "workflow.step",
439
- "pk": 21,
440
- "fields": {
441
- "name": "Approved",
442
- "workflow": 1,
443
- "code": 5,
444
- "status": "APPROVED",
445
- "step_type": "UserStep",
446
- "permission": null
447
- }
448
- },
449
- {
450
- "model": "workflow.step",
451
- "pk": 22,
452
- "fields": {
453
- "name": "Sent",
454
- "workflow": 1,
455
- "code": 10,
456
- "status": "SENT",
457
- "step_type": "UserStep",
458
- "permission": null
459
- }
460
- },
461
- {
462
- "model": "workflow.startstep",
463
- "pk": 15,
464
- "fields": {}
465
- },
466
- {
467
- "model": "workflow.userstep",
468
- "pk": 3,
469
- "fields": {
470
- "assignee": 1,
471
- "notify_user": false,
472
- "group": null,
473
- "assignee_method": null,
474
- "display": null,
475
- "kwargs": null
476
- }
477
- },
478
- {
479
- "model": "workflow.userstep",
480
- "pk": 4,
481
- "fields": {
482
- "assignee": 1,
483
- "notify_user": true,
484
- "group": null,
485
- "assignee_method": null,
486
- "display": null,
487
- "kwargs": null
488
- }
489
- },
490
- {
491
- "model": "workflow.userstep",
492
- "pk": 21,
493
- "fields": {
494
- "assignee": 1,
495
- "notify_user": true,
496
- "group": null,
497
- "assignee_method": null,
498
- "display": null,
499
- "kwargs": null
500
- }
501
- },
502
- {
503
- "model": "workflow.userstep",
504
- "pk": 22,
505
- "fields": {
506
- "assignee": 1,
507
- "notify_user": true,
508
- "group": null,
509
- "assignee_method": null,
510
- "display": null,
511
- "kwargs": null
512
- }
513
- },
514
- {
515
- "model": "workflow.splitstep",
516
- "pk": 18,
517
- "fields": {}
518
- },
519
- {
520
- "model": "workflow.joinstep",
521
- "pk": 20,
522
- "fields": {
523
- "wait_for_all": true
524
- }
525
- },
526
- {
527
- "model": "workflow.emailstep",
528
- "pk": 16,
529
- "fields": {
530
- "template": "workflow/templates/Test_Templates.txt/mail.txt",
531
- "subject": "1. Mail",
532
- "to": [
533
- 2
534
- ],
535
- "cc": [],
536
- "bcc": []
537
- }
538
- },
539
- {
540
- "model": "workflow.emailstep",
541
- "pk": 19,
542
- "fields": {
543
- "template": "workflow/templates/Test_Templates.txt/mail.txt",
544
- "subject": "2. Mail",
545
- "to": [
546
- 38
547
- ],
548
- "cc": [],
549
- "bcc": []
550
- }
551
- },
552
- {
553
- "model": "workflow.finishstep",
554
- "pk": 5,
555
- "fields": {
556
- "write_preserved_instance": false
557
- }
558
- },
559
- {
560
- "model": "workflow.finishstep",
561
- "pk": 10,
562
- "fields": {
563
- "write_preserved_instance": false
564
- }
565
- },
566
- {
567
- "model": "workflow.workflow",
568
- "pk": 1,
569
- "fields": {
570
- "name": "Invoice Workflow",
571
- "single_instance_execution": true,
572
- "model": 91,
573
- "status_field": "status",
574
- "preserve_instance": false,
575
- "graph": "workflow_graph"
576
- }
577
- }
578
- ]
File without changes