From 64f1c8553ef9885366eda69cd67d5b1dab0aff28 Mon Sep 17 00:00:00 2001 From: Yusei Tahara <yusei@nexedi.com> Date: Wed, 10 Jan 2018 16:11:01 +0900 Subject: [PATCH] [erp5_configurator_standard_categories] Use quantity unit conversion module to define quantity of category and stop using quantity property on categories. --- .../portal_categories/quantity_unit/area.xml | 23 -- .../quantity_unit/area/square_meter.xml | 40 +-- .../quantity_unit/energy.xml | 23 -- .../quantity_unit/energy/kwh.xml | 40 +-- .../quantity_unit/length.xml | 23 -- .../quantity_unit/length/meter.xml | 40 +-- .../quantity_unit/length/millimeter.xml | 40 +-- .../portal_categories/quantity_unit/mass.xml | 23 -- .../quantity_unit/mass/gram.xml | 25 +- .../quantity_unit/mass/kilogram.xml | 25 +- .../quantity_unit/mass/ton.xml | 25 +- .../portal_categories/quantity_unit/time.xml | 23 -- .../quantity_unit/time/day.xml | 40 +-- .../quantity_unit/time/hour.xml | 40 +-- .../quantity_unit/time/min.xml | 40 +-- .../quantity_unit/time/second.xml | 40 +-- .../quantity_unit/time/week.xml | 40 +-- .../portal_categories/quantity_unit/unit.xml | 21 +- .../quantity_unit/unit/piece.xml | 25 +- .../quantity_unit/volume.xml | 21 +- .../quantity_unit/volume/cubic_meter.xml | 42 +-- .../quantity_unit/volume/litre.xml | 44 +-- .../area_conversion_group.xml | 220 +++++++++++++++ .../energy_conversion_group.xml | 220 +++++++++++++++ .../length_conversion_group.xml | 260 ++++++++++++++++++ .../length_conversion_group/millimeter.xml | 224 +++++++++++++++ .../mass_conversion_group.xml | 260 ++++++++++++++++++ .../mass_conversion_group/gram.xml | 224 +++++++++++++++ .../mass_conversion_group/ton.xml | 224 +++++++++++++++ .../time_conversion_group.xml | 260 ++++++++++++++++++ .../time_conversion_group/day.xml | 224 +++++++++++++++ .../time_conversion_group/hour.xml | 224 +++++++++++++++ .../time_conversion_group/minute.xml | 224 +++++++++++++++ .../time_conversion_group/week.xml | 224 +++++++++++++++ .../unit_conversion_group.xml | 258 +++++++++++++++++ .../volume_conversion_group.xml | 260 ++++++++++++++++++ .../volume_conversion_group/litre.xml | 224 +++++++++++++++ ..._keep_last_workflow_history_only_path_list | 14 + .../bt/template_path_list | 16 +- 39 files changed, 3604 insertions(+), 659 deletions(-) create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/area_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/energy_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group/millimeter.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/gram.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/ton.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/day.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/hour.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/minute.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/week.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/unit_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group.xml create mode 100644 bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group/litre.xml create mode 100644 bt5/erp5_configurator_standard_categories/bt/template_keep_last_workflow_history_only_path_list diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area.xml index c8f733a5b5..c0a04fd700 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area.xml @@ -79,25 +79,6 @@ <key> <string>default_reference</string> </key> <value> <string>AREA</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>area</string> </value> @@ -110,10 +91,6 @@ <key> <string>short_title</string> </key> <value> <string>Area</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Area</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area/square_meter.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area/square_meter.xml index 87ab9a1524..24fbe533fe 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area/square_meter.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/area/square_meter.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>M2</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>square_meter</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>1</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Square Meter</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Square Meter</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy.xml index 354a40b9f7..bc44e33408 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy.xml @@ -79,25 +79,6 @@ <key> <string>default_reference</string> </key> <value> <string>E</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>energy</string> </value> @@ -110,10 +91,6 @@ <key> <string>short_title</string> </key> <value> <string>Energy</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Energy</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy/kwh.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy/kwh.xml index 41af6737af..91b932ec83 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy/kwh.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/energy/kwh.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>KWH</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>kwh</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>1</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Kilowatt-Hour</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Kilowatt-Hour</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length.xml index 5fcabc98e1..f01d514294 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length.xml @@ -79,25 +79,6 @@ <key> <string>default_reference</string> </key> <value> <string>LEN</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>length</string> </value> @@ -110,10 +91,6 @@ <key> <string>short_title</string> </key> <value> <string>Length</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Length</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/meter.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/meter.xml index 2f76f23ffc..658462d0fe 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/meter.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/meter.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>M</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>meter</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>1</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Meter</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Meter</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/millimeter.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/millimeter.xml index cc2139ba40..0a6325847e 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/millimeter.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/length/millimeter.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>MM</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>millimeter</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>0.001</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Millimeter</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Millimeter</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass.xml index a21e630df7..ccb6bd9aa6 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass.xml @@ -79,25 +79,6 @@ <key> <string>default_reference</string> </key> <value> <string>MASS</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>mass</string> </value> @@ -110,10 +91,6 @@ <key> <string>short_title</string> </key> <value> <string>Mass</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Mass</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/gram.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/gram.xml index 161e309a3d..8d39f4ceed 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/gram.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/gram.xml @@ -79,22 +79,9 @@ <value> <string>G</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -107,16 +94,14 @@ </item> <item> <key> <string>quantity</string> </key> - <value> <string>0.001</string> </value> + <value> + <none/> + </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Gram</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Gram</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/kilogram.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/kilogram.xml index cc0e37e50a..2b9b5341de 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/kilogram.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/kilogram.xml @@ -79,22 +79,9 @@ <value> <string>KG</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -107,16 +94,14 @@ </item> <item> <key> <string>quantity</string> </key> - <value> <string>1</string> </value> + <value> + <none/> + </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Kilogram</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Kilogram</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/ton.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/ton.xml index bdac0d9e8e..d63cef0d04 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/ton.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/mass/ton.xml @@ -79,22 +79,9 @@ <value> <string>TON</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -107,16 +94,14 @@ </item> <item> <key> <string>quantity</string> </key> - <value> <string>1000</string> </value> + <value> + <none/> + </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Ton</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Ton</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time.xml index 9f6433af9f..fbf588f481 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time.xml @@ -79,25 +79,6 @@ <key> <string>default_reference</string> </key> <value> <string>TIME</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>time</string> </value> @@ -110,10 +91,6 @@ <key> <string>short_title</string> </key> <value> <string>Time</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Time</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/day.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/day.xml index 5471a9ebc4..434aa5c023 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/day.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/day.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>D</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>day</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>86400</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Day</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Day</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/hour.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/hour.xml index d579d45bd7..ee2bac5b47 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/hour.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/hour.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>H</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>hour</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>3600</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Hour</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Hour</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/min.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/min.xml index 033cfc9d72..de16149bd2 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/min.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/min.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>MN</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>min</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>60</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Minute</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Minute</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/second.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/second.xml index 656f8b6a55..ec50f0abbe 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/second.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/second.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>S</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>second</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>1</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Second</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Second</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/week.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/week.xml index bcea614385..37f1c34f73 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/week.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/time/week.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,25 +67,6 @@ <key> <string>default_reference</string> </key> <value> <string>W</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>week</string> </value> @@ -105,18 +75,10 @@ <key> <string>portal_type</string> </key> <value> <string>Category</string> </value> </item> - <item> - <key> <string>quantity</string> </key> - <value> <string>604800</string> </value> - </item> <item> <key> <string>short_title</string> </key> <value> <string>Week</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Week</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit.xml index 672cf1a2e3..9e9162c8bf 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit.xml @@ -80,22 +80,9 @@ <value> <string>UNIT</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -110,10 +97,6 @@ <key> <string>short_title</string> </key> <value> <string>Unit</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Unit</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit/piece.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit/piece.xml index 4f6021174a..82792cc236 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit/piece.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/unit/piece.xml @@ -79,22 +79,9 @@ <value> <string>PIECE</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -107,16 +94,14 @@ </item> <item> <key> <string>quantity</string> </key> - <value> <string>1</string> </value> + <value> + <none/> + </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Piece</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Piece</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume.xml index be221b94dd..90be4528c4 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume.xml @@ -80,22 +80,9 @@ <value> <string>VOL</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -110,10 +97,6 @@ <key> <string>short_title</string> </key> <value> <string>Volume</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Volume</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/cubic_meter.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/cubic_meter.xml index 2d2d2c19f1..160ea79860 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/cubic_meter.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/cubic_meter.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -79,22 +68,9 @@ <value> <string>M3</string> </value> </item> <item> - <key> <string>effective_date</string> </key> + <key> <string>description</string> </key> <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> + <none/> </value> </item> <item> @@ -102,21 +78,17 @@ <value> <string>cubic_meter</string> </value> </item> <item> - <key> <string>portal_type</string> </key> - <value> <string>Category</string> </value> + <key> <string>int_index</string> </key> + <value> <int>1</int> </value> </item> <item> - <key> <string>quantity</string> </key> - <value> <string>1</string> </value> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Cubic Meter</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Cubic Meter</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/litre.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/litre.xml index e93512dbf9..dddb222e16 100644 --- a/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/litre.xml +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/portal_categories/quantity_unit/volume/litre.xml @@ -56,18 +56,7 @@ <item> <key> <string>_local_properties</string> </key> <value> - <tuple> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>quantity</string> </value> - </item> - <item> - <key> <string>type</string> </key> - <value> <string>string</string> </value> - </item> - </dictionary> - </tuple> + <tuple/> </value> </item> <item> @@ -78,45 +67,22 @@ <key> <string>default_reference</string> </key> <value> <string>LITRE</string> </value> </item> - <item> - <key> <string>effective_date</string> </key> - <value> - <object> - <klass> - <global name="DateTime" module="DateTime.DateTime"/> - </klass> - <tuple> - <none/> - </tuple> - <state> - <tuple> - <float>1263423600.0</float> - <string>GMT+1</string> - </tuple> - </state> - </object> - </value> - </item> <item> <key> <string>id</string> </key> <value> <string>litre</string> </value> </item> <item> - <key> <string>portal_type</string> </key> - <value> <string>Category</string> </value> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> </item> <item> - <key> <string>quantity</string> </key> - <value> <string>0.001</string> </value> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> </item> <item> <key> <string>short_title</string> </key> <value> <string>Litre</string> </value> </item> - <item> - <key> <string>title</string> </key> - <value> <string>Litre</string> </value> - </item> </dictionary> </pickle> </record> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/area_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/area_conversion_group.xml new file mode 100644 index 0000000000..bb7ecc7193 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/area_conversion_group.xml @@ -0,0 +1,220 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/area/square_meter</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>area_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46837.31730.12987</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562894.65</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562910.58</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/energy_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/energy_conversion_group.xml new file mode 100644 index 0000000000..6267073fc7 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/energy_conversion_group.xml @@ -0,0 +1,220 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/energy/kwh</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>energy_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46837.63139.20684</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562923.19</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562929.34</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group.xml new file mode 100644 index 0000000000..4f6dc6d320 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group.xml @@ -0,0 +1,260 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/length/meter</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>length_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="5" aka="AAAAAAAAAAU="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46838.28929.35976</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562957.7</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562988.07</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group/millimeter.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group/millimeter.xml new file mode 100644 index 0000000000..17f69dd799 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/length_conversion_group/millimeter.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/length/millimeter</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>millimeter</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.001</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46838.47332.4556</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562973.05</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515562978.61</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group.xml new file mode 100644 index 0000000000..71f8415182 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group.xml @@ -0,0 +1,260 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/mass/kilogram</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>mass_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="5" aka="AAAAAAAAAAU="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19542.25656.55876</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563126.98</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1514183096.93</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/gram.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/gram.xml new file mode 100644 index 0000000000..b29304c2d9 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/gram.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/mass/gram</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>gram</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.001</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19537.52067.58043</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563154.97</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563160.0</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/ton.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/ton.xml new file mode 100644 index 0000000000..5a20938ad1 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/mass_conversion_group/ton.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/mass/ton</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>ton</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>1000.0</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19539.16695.59118</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563175.26</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513924975.06</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group.xml new file mode 100644 index 0000000000..9f75bb6cfc --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group.xml @@ -0,0 +1,260 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/time/second</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>time_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="5" aka="AAAAAAAAAAU="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19548.11479.17373</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941859.54</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1514183147.27</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/day.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/day.xml new file mode 100644 index 0000000000..5afa57be12 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/day.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/time/day</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>day</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>86400.0</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19820.25054.2577</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941902.44</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941910.53</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/hour.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/hour.xml new file mode 100644 index 0000000000..040950015e --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/hour.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/time/hour</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>hour</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>3600.0</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19821.41342.6980</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941947.02</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941952.89</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/minute.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/minute.xml new file mode 100644 index 0000000000..1669fc405f --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/minute.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/time/min</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>minute</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>60.0</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19822.22004.35020</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941986.41</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513941994.56</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/week.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/week.xml new file mode 100644 index 0000000000..2e78974679 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/time_conversion_group/week.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/time/week</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>week</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>604800.0</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.19823.36610.11741</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513942076.14</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1513942082.52</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/unit_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/unit_conversion_group.xml new file mode 100644 index 0000000000..f407c51606 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/unit_conversion_group.xml @@ -0,0 +1,258 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/unit/piece</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>unit_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="5" aka="AAAAAAAAAAU="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>ERP5TypeTestCase</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>0.0.0.0</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1514356806.02</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>ERP5TypeTestCase</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1514356806.02</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group.xml new file mode 100644 index 0000000000..4a355a27ac --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group.xml @@ -0,0 +1,260 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/volume/cubic_meter</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>volume_conversion_group</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Group</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="5" aka="AAAAAAAAAAU="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46840.316.31232</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563053.77</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563083.9</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group/litre.xml b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group/litre.xml new file mode 100644 index 0000000000..68221d6b99 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/PathTemplateItem/quantity_unit_conversion_module/volume_conversion_group/litre.xml @@ -0,0 +1,224 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Quantity Unit Conversion Definition" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Access_contents_information_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_View_Permission</string> </key> + <value> + <tuple> + <string>Assignee</string> + <string>Assignor</string> + <string>Associate</string> + <string>Auditor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>quantity_unit/volume/litre</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>litre</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Quantity Unit Conversion Definition</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.001</float> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>edit_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>edit</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>serial</string> </key> + <value> <string>964.46840.20025.22835</string> </value> + </item> + <item> + <key> <string>state</string> </key> + <value> <string>current</string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563068.08</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>actor</string> </key> + <value> <string>zope</string> </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>error_message</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>time</string> </key> + <value> + <object> + <klass> + <global name="DateTime" module="DateTime.DateTime"/> + </klass> + <tuple> + <none/> + </tuple> + <state> + <tuple> + <float>1515563074.0</float> + <string>GMT+9</string> + </tuple> + </state> + </object> + </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_configurator_standard_categories/bt/template_keep_last_workflow_history_only_path_list b/bt5/erp5_configurator_standard_categories/bt/template_keep_last_workflow_history_only_path_list new file mode 100644 index 0000000000..a806d173d5 --- /dev/null +++ b/bt5/erp5_configurator_standard_categories/bt/template_keep_last_workflow_history_only_path_list @@ -0,0 +1,14 @@ +quantity_unit_conversion_module/area_conversion_group +quantity_unit_conversion_module/area_conversion_group/** +quantity_unit_conversion_module/energy_conversion_group +quantity_unit_conversion_module/energy_conversion_group/** +quantity_unit_conversion_module/length_conversion_group +quantity_unit_conversion_module/length_conversion_group/** +quantity_unit_conversion_module/mass_conversion_group +quantity_unit_conversion_module/mass_conversion_group/** +quantity_unit_conversion_module/time_conversion_group +quantity_unit_conversion_module/time_conversion_group/** +quantity_unit_conversion_module/unit_conversion_group +quantity_unit_conversion_module/unit_conversion_group/** +quantity_unit_conversion_module/volume_conversion_group +quantity_unit_conversion_module/volume_conversion_group/** \ No newline at end of file diff --git a/bt5/erp5_configurator_standard_categories/bt/template_path_list b/bt5/erp5_configurator_standard_categories/bt/template_path_list index 1714c7d3ed..aa86c18220 100644 --- a/bt5/erp5_configurator_standard_categories/bt/template_path_list +++ b/bt5/erp5_configurator_standard_categories/bt/template_path_list @@ -32,4 +32,18 @@ portal_categories/skill/** portal_categories/social_form/** portal_categories/trade_phase/** portal_categories/trade_state/** -portal_categories/use/** \ No newline at end of file +portal_categories/use/** +quantity_unit_conversion_module/area_conversion_group +quantity_unit_conversion_module/area_conversion_group/** +quantity_unit_conversion_module/energy_conversion_group +quantity_unit_conversion_module/energy_conversion_group/** +quantity_unit_conversion_module/length_conversion_group +quantity_unit_conversion_module/length_conversion_group/** +quantity_unit_conversion_module/mass_conversion_group +quantity_unit_conversion_module/mass_conversion_group/** +quantity_unit_conversion_module/time_conversion_group +quantity_unit_conversion_module/time_conversion_group/** +quantity_unit_conversion_module/unit_conversion_group +quantity_unit_conversion_module/unit_conversion_group/** +quantity_unit_conversion_module/volume_conversion_group +quantity_unit_conversion_module/volume_conversion_group/** \ No newline at end of file -- 2.30.9