1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
2009-11-18 yusei
* Fix wrong python script parameter.
2009-11-10 tatuya
* Fix Sale and PurchaseOrder_view/listbox_quantity_unit to show empty drop-down list if the line does not have any resource. This fix makes Delivery and Line consistence of quantity_unit displaying.
2009-10-23 tatuya
* Clean-up returned sale packing list forms, workflows according to sale/purchase packing list.
2009-10-16 yusei
* Update for the changes of new portal types of portal types.
2009-09-09 yusei
* Fix list view of packing list modules and supply modules and use countFolder method to count result.
2009-09-07 yusuke
* Replace ERP5Report to ERP5Form and ReportBox
2009-08-20 Jérome
* Move out old tax and discount system.
2009-07-02 romain
* Revert latest proxy field library simplification, as the design was not finalized.
2009-06-19 tatuya
* Fix workflow scripts to enable to create Sale Invoices and Purchase Invoices when using erp5_advanced_invoicing
2009-05-19 yusei
* Fix some proxy fields. count_method should not be inherited from template field and proxy_listbox_ids had to be copied to new proxified fields but it was not copied.
2009-05-01 yusei
* Fix some mistakes on previous field library conversion.
2009-04-30 yusei
* Simplify field libraries and proxy fields. Old field libraries are kept for backward compatibility. Need recent version of erp5_core(newer than r1193).
* Update dependencies.
2009-04-18 Kazuhiko
* Version 5.4.1
2009-04-15 Kazuhiko
* move open order functionality to erp5_open_order BT.
2009-03-13 yusei
* Correct workflow titles.
2009-02-15 yusei
* Fixed wrong field name in OpenSaleOrder_view.
2009-02-09 yusei
* Added open order functionality.
2009-01-29 yusei
* Use activate_kw parameter in build method.
2008-12-9 yusei
* Display all selected business applications in listbox.
2008-11-13 yusei
* Start to develop version 5.4.
2008-10-14 yusei
* Start to develop version 5.3.
2008-10-02 Jerome
* Add delivery_tax_interaction workflow to update tax line when delivery line is deleted.
2008-09-16 Kazuhiko
* revise purchase_packing_list_builder and sale_packing_list_builder using new API.
* use delivery_causality_workflow instead of invoice_causality_workflow in Internal Packing List, Purchase Packing List and Sale Packing List.
2008-09-11 Kazuhiko
* Add a script for selecting deliveries in purchase_packing_list_builder like in sale_packing_list_builder.
2008-09-10 yusei
* Update worklist action box names.
2008-09-08 yusei
* Enable template feature for Sales Order.
2008-09-04 yusei
* Update English messages.
2008-08-29 yusei
* Correct text.
2008-08-28 yusei
* Use Base_translateString or translateString instead of N_ for translation message.
2008-07-30 Jerome
Add "offered" and "rejected" state on order workflow, to manage offers.
2008-07-16 Jerome
Add worklists for diverged packing lists.
2008-07-09 Nicolas
use standard packing_list_workflow for Internal Packing Lists
2008-07-07 Nicolas
Proxify Internal Packing List
2008-06-27 yusei
* Start to develop version 5.2.
2008-06-26 yusei
* Revise version to 5.1.
2008-06-18 jerome
* ignore container state for packing list workflow transitions
2008-06-03 vincentd
* Add all rights to manager to inventory workflow(Deleted), order_workflow(Deleted, Closed, Cancelled, Open), packing_list_causality_workflow (Building, Solving) and packing_list_workflow(Deleted, Cancelled)
2008-05-26 yo
* Change the title of my_order to Priority, because only priority-related categories are displayed in Express.
2008-04-18 jerome
* Bump to version 5.0
2008-04-17 jerome
* Add new discount system, similar to new tax system.
2008-04-16 alex
* move Supplies to PDM
* push version to 1.0rc17
2008-04-14 jerome
* Add new Tax system.
2008-04-11 aurel
* Add order report.
2008-04-10
* Add stock report.
2007-08-10 Seb
* Proxify inventory forms
* update role setting on many workflist
* update permission settings on many worklfow
2007-10-30 yo
* Set pricing_interaction_workflow to Container, Container Line, Internal Packing List Line, Inventory Line, Purchase Order Line, Purchase Packing List Line, Returned Sale Packing List Line, Sale Order Line, and Sale Packing List Line.
2007-09-30 yo
* Clean up the actions of portal types.
2007-09-25 yo
* Set module group on portal types.
2007-09-21 Yusei
* Add open and closed states to order_workflow.
2007-09-05 Kazuhiko
* Remove packing_list.edit() from Delivery_confirm because expansion will be invoked from interaction workflow.
2007-08-13 Jerome
* Remove portal type actions that are now defined as global actions
2007-08-02 Romain
* Add InventoryConstraint
207-07-30 yo
* Add Resource_getPriceCalculationOperandDict.
2006-09-12 Romain
* Fix ReturnedSalePackingListModule_viewReturnedSalePackingListList
* Fix group's name.
2006-08-02 Romain
* Added title to some forms.
2006-07-03 Kevin
* Merge Seb's delivery_patch business template and erp5_trade.
* Revert previous action.
* Add a short basic description.
2006-05-11 Alex
* make sure the Container is indexed before checking if the delivery is packed.
* fixed name of rule used in order_interaction_workflow
* Stop using Delivery Cell on Orders and Internal Packing List (workflows are still a dumb copy of Delivery Cell's and might need to be adapted)
2006-05-10 Jerome
* Added inventory_workflow
* Hide Price & Inventory tabs if no cells on Inventory Line.
* Copy Source from Purchase Trade Condition when applying it
* Set updateAppliedRule on Purchase Line / Cell Edit
* Add Person portal type to source/destination administration/decision
2006-05-03 Romain
* Remove useless field in PurchaseTradeCondition_viewProfile.
2006-04-20 Romain
* Make supply_line_interaction_workflow compatible with Sale/Purchase Supply Line.
2006-03-09 Seb
* Fix parameters in DeliverBuilder_selectConfirmedDeliveryList
2006-03-09 Romain
* Fix history action in Purchase/Sale Supply Cell.
2006-03-08 Romain
* Added Sale Supply Line/Cell, Purchase Supply Line/Cell.
* Use proxy field for Supply.
2006-03-08 Seb
* Added script for selecting deliveries in sale_packing_list_builder
2006-03-03 Seb
* Added Returned Sale Packing List properties
2006-03-03 romain
* add proxy field in internal packing list.
2006-02-28 romain
* add proxy field in purchase trade condition, purchase order, sale packing list, purchase packing list.
2006-02-27 alex
* Added Non Discountable Additional Price and Variable Additional Price to Supply Lines
2006-02-22 kevin
* Fix bad default lisbox parameters.
2006-02-22 romain
* use proxy field in sale trade condition, sale order.
2006-02-16 jerome
* update Payment Condition forms to use souce/destination payment categories, quantity and efficiency.
2006-01-24 Seb
* call updateCausalityState with fast option in SalePackingList_copyOrderProperties
* in the case we add new lines to an existing packing_list already confirmed, do not delete data in PackingList_copyOrderProperties
2006-01-21 JPS
* Removed support for assignRoleToSecurityGroup in PackingList_copyOrderProperties and moved to dedicated script
2006-01-21 JPS
* Added support for assignRoleToSecurityGroup in PackingList_copyOrderProperties
2006-01-06 Romain
* add Delivery_viewInventory
2005-12-20 Kevin
* Update state type of packing_list_workflow, internal_packing_list_workflow and order_workflow states.
2005-12-19 Jérome
* bug fix; don't use SQLQueue in delivery_edit_workflow
* trigger delivery_edit on workflow transitions.
2005-12-19 Seb
* added category type 'sub_variation' on aggregate
2005-12-14 Seb
* use activity tags in packing_list_workflow/scripts/PackingList_updateAppliedRule
2005-12-14 jerome
* package the content of trade_date category, because PaymentCondition_getTradeDate depends on it
2005-12-11 seb
* fixed the duplicate applied rule problem in order_workflow
2005-12-08 yo
* Fix the LEFT JOIN syntax in Order_zSelectMovement.
2005-12-05 Seb
* Cleaned SaleOrder_applySaleTradeCondition
2005-11-30 aurel
* add aggregateMovementGroup in portal_deliveries/purchase_packing_list_builder
2005-11-30 Seb
* Renamed in portal_skins two forms:
SalePackingList_viewSolveActionsDialog to PackingList_viewSolveActionsDialog, and also the action script.
2005-11-29 aurel
* set flag "acquire permissions" on state permissions of packing_list_causality_workflow apart for building and solving
2005-11-26 Jérome
* remove permission managed by packing_list_container_workflow, they are not in use.
2005-11-23 aurel
* remove SalePackingList_getCellOrLine
2005-11-23 Romain
* change Delivery Cell Portal Type on purchase_packing_list_builder.
2005-11-23 aurel
* added SalePackingList_doSolveActions, SalePackingList_getCellOrLine and SalePackingList_viewSolveActionsDialog in order to choose solve action on sale packing list cell
2005-11-18 Alex
* added proxy manager on PurchaseOrder_selectMovement script
2005-11-18 yo
* The meta type of Internal Packing List Line was wrong.
* Remove actions.
2005-11-11 Romain
* add print on SupplyLine.
* correct SupplyLine* forms.
* Correct naming convention.
2005-11-10 Romain
* correct SupplyLine_init
2005-11-09 Romain
* modify PurchaseOrder_view, PurchasePackingList_view
2005-11-08 Romain
* added supply_line_interaction_workflow.
* modified the pricing model on SupplyLine (added and modify some skins)
* removed supply_module
* removed Supply Module, Supply
* added purchase_supply_module, sale_supply_module
* added Sale Supply, Sale Supply Module, Purchase Supply, Purchase Supply Module
2005-11-05 Romain
* dirty bug fix on Order_zSelectMovement
* configure Purchase Order Line in order to create Delivery Cell inside.
* Correct naming conventions.
2005-11-04 Romain
* correct PurchasePackingList_copyOrderProperties (replace build by startBuilding)
* modified order_workflow/scripts/Order_buildPackingList
2005-11-03 Romain
* added OrderLine_zGetRelatedQuantity
2005-11-03 Seb
* updated order_workflow and packing_list_causality workflow in order to use tags and in order to not wait until all the simulation is reindexed before creating the packing_list
2005-10-20 Romain
* Correct naming convention.
2005-10-13 Jérome
* added delivery_edit_workflow to reindew simulation and updateAppliedRule when necessary (FIXME: in the current implementation, I guess it reindexes more than necessary)
* added titles on workflow states
* move related keys to ERP5Catalog/sql
2005-10-13 Jérome
* added the script Delivery_setCausalityFromSimulation
* launch the invoice building when a packing list is started
2005-10-06 Seb
* Modified packing_list_interaction_workflow, when a content is modified in a packing it is better to start an activity than doing things immediatly, this increase a lot the speed to modify many cells or lines
2005-10-06 Romain
* Add print and export action on Supply Module
* add form SupplyModule_viewSupplyList
* add listbox filed in Supply_view
* add print action on Supply
* associate edit_workflow to Supply Line
2005-09-29 Seb
* change the way of calling delivery_builders in order_workflow
* fixed packing_list_workflow
* modified a transition of packing_list_causality_workflow
* SalePackingList_copyOrderProperties
* SaleOrder_selectMovement use now explanation_portal_type
2005-09-28 Jérome
* fix SaleOrder_applySaleTradeCondition
2005-09-28 Jérome
* Checks the validity of the order before passing transitions in order_workflow
2005-09-28 Seb
* Updated packing_list_workflow
* Added portal_type Puchase Packing List Cell
2005-09-27 Seb
* Updated packing_list_causality_worfklow
packing_list_worklfow
SalePackingList_copyOrderProperties
PurchasePackingList_copyOrderProperties
packing_list_interaction_workflow
2005-09-23 Seb
* Added portal type "Sale Packing List Cell"
2005-09-12 JPS
* Added proxy security Manager to Delivery_asCellRange script
2005-09-13 Seb
* In order_workfow, start the method
build of the delivery builder with an SQLQueue activity (so we can build several deliveries)
2005-09-08 Seb
* Improved the script
SaleOrder_applySaleTradeCondition
2005-09-07 Jérome
move invoice related portal types from erp5_trade to erp5_accounting
2005-09-06 Romain 1.0rc13
* Remove target_quantity reference in DeliveryLine_zGetRelatedQuantity.
2005-08-29 Romain
* Remove Payment stuff in PurchaseOrder_applyPurchaseTradeCondition.
2005-08-26 Romain
* add condition object/hasCellContent to all portal type used as a line for form *Line_view[Price|Quantity|Option].
2005-08-24 Seb
* Purchase packing list generation optimization
* modify PurchasePackingList_copyOrderProperties
* added Delivery_confirm
2005-08-22 Romain
* modify parameter in PurchaseOrder_selectMovement
* ContainerLine_asCellRange works with option variation
2005-08-19 Romain
* add auto_planned state in order_workflow
2005-08-18 Jérome
* make Organisation's jumps optional
2005-07-26 Kevin
repair PurchaseOrder_applyPurchaseTradeCondition (thanks to Mayoro)
2005-07-26 Romain
Added industrial_phase as a variation of Resource.
Modify DeliveryLine_viewPrice, DeliveryLine_viewQuantity.
Add DeliveryLine_viewIndustrialPhase, DeliveryCell_asPredicate.
2005-07-21 Romain
Modified some forms and scripts in order to make option variation working.
Option are not part of the matrix dimension (use parameter omit_option_base_category).
DeliveryLine_asCellRange
OrderLine_asCellRange
Display option variation with DeliveryLine_hashVariationCategoryItemList, but they are not required.
Modified matrixbox_variation_category_list on DeliveryLine_viewPrice and
DeliveryLine_viewQuantity, in order not to erase option saved on cell.
2005-07-19 Mikaël
- Changed
ContainerLine_asCellRange
DeliveryLine_asCellRange
InventoryLine_asCellRange
InvoiceLine_asCellRange
OrderLine_asCellRange
SupplyLine_asCellRange
with **kw as very last script's parameter
2005-07-10 Jérome
- Moved simulation_movement_interaction_workflow to erp5_core
2005-07-08 Romain
- Add simulation_movement_interaction_workflow from Guillaume.
2005-07-06 Seb
- Added SectionPathMovementGroup to builders
2005-06-23 Kevin
- Add InventoryLine_zGetTotal
2005-06-23 yo
- Add Supply Module, Supply, supply_module.
- Add my_resource_title into SupplyLine_view.
2005-06-20
Added script SupplyLine_asCellRange
2005-06-16
Fix problem in SupplyLine_asCellRange
2005-06-16
Added script for the asPredicate method
for supply line and cells, and also
trade condition
2005-06-13
Add base category aggregate.
2005-06-09
Add Internal Packing List and Inventory modules.
2005-06-08
Add permissions setting for some workflows.
Remove container workflow on Purchase Packing List.
2005-06-02
Updated everything about Supply Lines and Cells
2005-06-02
Modify some workflow scripts in order to index objects immediately.
2005-05-31
Add packing list workflows.
Modify Delivery_zGetTotal.
2005-05-11
Add causality workflows.
2005-05-09
Modify configuration of Delivery Builder.
2005-05-04
Add packing list workflow.
2005-04-22
Modify security settings.
2005-04-19
Change my_title field on all forms (name become Title, and not required anymore).
Order_zSelectMovement must use ZSQLBrain.
2005-04-18
Add DeliveryBuilder.
Use explanation_uid in movement table.
Correct Order_zSelectMovement.
2005-04-07
Finish some Form
2005-04-06
Modify TradeCondition_viewPayment
2005-04-06
Move base categories to erp5_core:
destination_administration
destination_decision
destination_payment
source_administration
source_decision
source_payment
Remove base categories:
target_destination
target_destination_section
target_source
target_source_section