diff --git a/bt5/erp5_real_time_inventory_accounting/ActionTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule/view.xml b/bt5/erp5_real_time_inventory_accounting/ActionTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule/view.xml new file mode 100644 index 0000000000000000000000000000000000000000..3c118e46aa798179c815f26afde33cbf97df48c0 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/ActionTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule/view.xml @@ -0,0 +1,81 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ActionInformation" module="Products.CMFCore.ActionInformation"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>action_type/object_view</string> + </tuple> + </value> + </item> + <item> + <key> <string>category</string> </key> + <value> <string>object_view</string> </value> + </item> + <item> + <key> <string>condition</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>icon</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>view</string> </value> + </item> + <item> + <key> <string>permissions</string> </key> + <value> + <tuple> + <string>View</string> + </tuple> + </value> + </item> + <item> + <key> <string>priority</string> </key> + <value> <float>1.0</float> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>View</string> </value> + </item> + <item> + <key> <string>visible</string> </key> + <value> <int>1</int> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Expression" module="Products.CMFCore.Expression"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>text</string> </key> + <value> <string>string:${object_url}/Rule_view</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.py b/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.py new file mode 100644 index 0000000000000000000000000000000000000000..66976b48db1c224342b32c85bd0a919cc1784455 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.py @@ -0,0 +1,100 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2017 Nexedi SA and Contributors. All Rights Reserved. +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsibility of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# guarantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. +# +############################################################################## + +from Products.ERP5.Document.InvoiceTransactionSimulationRule import (InvoiceTransactionSimulationRule, + InvoiceTransactionRuleMovementGenerator) + +class InventoryAssetPriceAccountingRuleMovementGenerator(InvoiceTransactionRuleMovementGenerator): + """ + """ + # CMF Type Definition + meta_type = 'ERP5 Inventory Asset Price Accounting Simulation Rule' + portal_type = 'Inventory Asset Price Accounting Simulation Rule' + + ## XXX: "the applicable sale/internal supply (if defined)" => even if the + ## price is set to None on the PPLL/SPLL, it will be set anyway by + ## Movement_getPriceCalculationOperandDict (lookup for Sale Supply) + + def _getInputMovementList(self, movement_list=None, rounding=False): + simulation_movement = self._applied_rule.getParentValue() + + # ERP5 generic implementation of getPrice(): + # 1. PL 'price' => + # 2. Movement_getPriceCalculationOperandDict() + # => Supply Line... + quantity = simulation_movement.getPrice() + if quantity is None: + # XXX: "or fails to generate, and creates a "stock decrease" (expense)"??? + raise NotImplementedError + + # use = simulation_movement.getUse() + # if use == 'trade/sale': + # portal_type = 'Sale Supply Line' + # elif use == 'trade/purchase': + # portal_type = 'Purchase Supply Line' + # else: + # raise NotImplementatedError("%s: use='%s' not handled by this Rule" % + # (simulation_movement.getPath(), use)) + + # domain_tool = simulation_movement.getPortalObject().portal_domains + # sale_supply_line_list = domain_tool.searchPredicateList( + # simulation_movement, + # portal_type=portal_type) + + # if len(sale_supply_line_list) == 0: + # return () + + # quantity = sale_supply_line_list[0].getBasePrice() + + return [simulation_movement.asContext(quantity=quantity)] + + def _getUpdatePropertyDict(self, input_movement): + update_property_dict = InvoiceTransactionRuleMovementGenerator._getUpdatePropertyDict( + self, + input_movement) + + # XXX: Root Applied Rule? + use = input_movement.getUse() + if use == 'trade/sale': + start_date = stop_date = input_movement.getStartDate() + elif use == 'trade/purchase': + start_date = stop_date = input_movement.getStopDate() + update_property_dict['source_section'] = input_movement.getDestinationSection() + else: + raise NotImplementedError("%s: use='%s' not handled by this Rule" % + (input_movement.getPath(), use)) + + update_property_dict['start_date'] = start_date + update_property_dict['stop_date'] = stop_date + + return update_property_dict + +class InventoryAssetPriceAccountingSimulationRule(InvoiceTransactionSimulationRule): + def _getMovementGenerator(self, context): + return InventoryAssetPriceAccountingRuleMovementGenerator( + applied_rule=context, rule=self) diff --git a/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.xml b/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.xml new file mode 100644 index 0000000000000000000000000000000000000000..29beadaa1d99f1231865997c791894fe9ccc3ebf --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/DocumentTemplateItem/portal_components/document.erp5.InventoryAssetPriceAccountingSimulationRule.xml @@ -0,0 +1,123 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Document Component" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_recorded_property_dict</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>InventoryAssetPriceAccountingSimulationRule</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>document.erp5.InventoryAssetPriceAccountingSimulationRule</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Document Component</string> </value> + </item> + <item> + <key> <string>sid</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>text_content_error_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>text_content_warning_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>erp5</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>component_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </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>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_phase/trade/inventory_accounting.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_phase/trade/inventory_accounting.xml new file mode 100644 index 0000000000000000000000000000000000000000..178eac16a53150cb7bf5a711be2bc016b3fff47d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_phase/trade/inventory_accounting.xml @@ -0,0 +1,85 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/inventory_accounting</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_accounting</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Inventory Accounting</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_state/inventory_accounted.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_state/inventory_accounted.xml new file mode 100644 index 0000000000000000000000000000000000000000..52dcf95c31f52b37d98e50237c6c24975e045f57 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_categories/trade_state/inventory_accounted.xml @@ -0,0 +1,85 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_state/inventory_accounted</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_accounted</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Inventory Accounted</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f4410f83a81c1839e7023c0c47d4fd93ebb62ff --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder.xml @@ -0,0 +1,185 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Delivery Builder" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <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>collect_order</string> </key> + <value> + <tuple> + <string>OrderMovementGroup</string> + <string>PathMovementGroup</string> + <string>DateMovementGroup</string> + <string>ResourceMovementGroup</string> + <string>VariantMovementGroup</string> + </tuple> + </value> + </item> + <item> + <key> <string>collect_order_list</string> </key> + <value> + <list> + <string>test</string> + <string>test2</string> + </list> + </value> + </item> + <item> + <key> <string>collect_order_list_id</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>comment</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>delivery_after_generation_method_id</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>delivery_after_generation_script_id</string> </key> + <value> <string>AccountingTransaction_postInventoryAssetPriceGeneration</string> </value> + </item> + <item> + <key> <string>delivery_cell_collect_order</string> </key> + <value> + <tuple> + <string>ResourceMovementGroup</string> + </tuple> + </value> + </item> + <item> + <key> <string>delivery_cell_portal_type</string> </key> + <value> <string>Delivery Cell</string> </value> + </item> + <item> + <key> <string>delivery_cell_separate_order</string> </key> + <value> + <tuple> + <string>calculateAddQuantity</string> + </tuple> + </value> + </item> + <item> + <key> <string>delivery_collect_order</string> </key> + <value> + <tuple> + <string>DateMovementGroup</string> + <string>SectionPathMovementGroup</string> + <string>CausalityMovementGroup</string> + </tuple> + </value> + </item> + <item> + <key> <string>delivery_creatable</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>delivery_line_collect_order</string> </key> + <value> + <tuple> + <string>QuantitySignMovementGroup</string> + <string>PathMovementGroup</string> + <string>ResourceMovementGroup</string> + </tuple> + </value> + </item> + <item> + <key> <string>delivery_line_portal_type</string> </key> + <value> <string>Accounting Transaction Line</string> </value> + </item> + <item> + <key> <string>delivery_module</string> </key> + <value> <string>accounting_module</string> </value> + </item> + <item> + <key> <string>delivery_portal_type</string> </key> + <value> <string>Accounting Transaction</string> </value> + </item> + <item> + <key> <string>delivery_select_method_id</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_asset_price_accounting_transaction_builder</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Delivery Builder</string> </value> + </item> + <item> + <key> <string>resource_portal_type</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>simulation_select_method_id</string> </key> + <value> <string>AccountingTransaction_selectInventoryAssetPriceMovement</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Inventory Asset Price Accounting Transaction Builder</string> </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> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_delivery.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_delivery.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f98bbcd5cba7dac0b66a532927e64c80f0998b3 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_delivery.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Movement Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>divergence_scope/category</string> + <string>collect_order_group/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>category_movement_group_on_delivery</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Movement Group</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> + <tuple> + <string>specialise</string> + <string>resource</string> + <string>delivery_mode</string> + <string>incoterm</string> + <string>ledger</string> + <string>source_section</string> + <string>destination_section</string> + <string>source_decision</string> + <string>destination_decision</string> + <string>source_administration</string> + <string>destination_administration</string> + <string>source_project</string> + <string>destination_project</string> + <string>source_payment</string> + <string>destination_payment</string> + <string>price_currency</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>category_movement_group_on_delivery</string> </value> + </item> + <item> + <key> <string>update_always</string> </key> + <value> <int>0</int> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_line.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_line.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d42bdd8bf84ce6db281f046eab8a5bc5052b653 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/category_movement_group_on_line.xml @@ -0,0 +1,61 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Movement Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>divergence_scope/category</string> + <string>collect_order_group/line</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>category_movement_group_on_line</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Movement Group</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> + <tuple> + <string>source</string> + <string>destination</string> + <string>product_line</string> + <string>source_function</string> + <string>destination_function</string> + <string>source_project</string> + <string>destination_project</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>category_movement_group_on_line</string> </value> + </item> + <item> + <key> <string>update_always</string> </key> + <value> <int>0</int> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/causality_movement_group_on_delivery.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/causality_movement_group_on_delivery.xml new file mode 100644 index 0000000000000000000000000000000000000000..c21b216321908a7119acf376d9d74aa5bca3b043 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/causality_movement_group_on_delivery.xml @@ -0,0 +1,42 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Causality Movement Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>collect_order_group/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>causality_movement_group_on_delivery</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Causality Movement Group</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>causality_movement_group_on_delivery</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/delivery_causality_assignement_movement_group_on_delivery.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/delivery_causality_assignement_movement_group_on_delivery.xml new file mode 100644 index 0000000000000000000000000000000000000000..2b93245cbc5740c5165f762cabbbb0eb857bf0be --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/delivery_causality_assignement_movement_group_on_delivery.xml @@ -0,0 +1,42 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Delivery Causality Assignment Movement Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>collect_order_group/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>delivery_causality_assignement_movement_group_on_delivery</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>100</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Delivery Causality Assignment Movement Group</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Delivery Causality Assignement Movement Group On Delivery</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/property_movement_group_on_delivery.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/property_movement_group_on_delivery.xml new file mode 100644 index 0000000000000000000000000000000000000000..49a31d06eb4c5b867cf5828dd458ff54b772a578 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_deliveries/inventory_asset_price_accounting_transaction_builder/property_movement_group_on_delivery.xml @@ -0,0 +1,52 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Movement Group" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>divergence_scope/property</string> + <string>collect_order_group/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>property_movement_group_on_delivery</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Movement Group</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> + <tuple> + <string>start_date</string> + <string>stop_date</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>property_movement_group_on_delivery</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule.xml new file mode 100644 index 0000000000000000000000000000000000000000..aaff70f571ef5d35538b48470e09b320b65365ae --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule.xml @@ -0,0 +1,322 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Delivery Root Simulation Rule" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <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>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>default_delivery_rule</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>default_delivery_root_simulation_rule</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Delivery Root Simulation Rule</string> </value> + </item> + <item> + <key> <string>test_method_id</string> </key> + <value> + <tuple> + <string>Rule_testFalse</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>New Default Delivery Root Simulation Rule</string> </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>4</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</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> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </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> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>start_date</string> </key> + <value> + <tuple> + <none/> + <none/> + </tuple> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <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">AAAAAAAAAAg=</string> </persistent> + </value> + </item> + <item> + <key> <string>rule_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAk=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="8" aka="AAAAAAAAAAg="> + <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.57195.61468.14626</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>1516184412.7</float> + <string>UTC</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="9" aka="AAAAAAAAAAk="> + <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>1515723675.05</float> + <string>UTC</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_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/aggregate_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/aggregate_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..7daa20e450b2f62d0a32481eebae295b45e4bb93 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/aggregate_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>aggregate_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>aggregate</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>aggregate divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_application_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_application_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..fb93497ffacb6ac454f1415d6a328805ae689af0 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_application_tester.xml @@ -0,0 +1,90 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>base_application_tester</string> </value> + </item> + <item> + <key> <string>matching_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>base_application</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>base_application divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_contribution_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_contribution_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..a403c3b196f1dd2217145ba3cff085baea837b2e --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/base_contribution_tester.xml @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>base_contribution_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>base_contribution</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>base_contribution divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_mode_divergence_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_mode_divergence_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..679a4765f2fa3aee6cadbd2fdf2b8582684a13ef --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_mode_divergence_tester.xml @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>delivery_mode_divergence_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>delivery_mode</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>delivery_mode divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..fff34bf28cfacfbadde2323c2532988fba9b6e92 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/delivery_tester.xml @@ -0,0 +1,78 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>delivery_tester</string> </value> + </item> + <item> + <key> <string>matching_provider</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>delivery</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>delivery divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/description_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/description_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc741c937079e124bbf0938882f2f6c50595acd8 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/description_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="String Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>description_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>String Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>description</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>description divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_account_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_account_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..24a95e06c346235808ef2d06e2d90252617a2f8a --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_account_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_account_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_account</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_account divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_administration_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_administration_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..7511578428d3cd6afa23f8a6b700d0a9cb690286 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_administration_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_administration_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_administration</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_administration divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_decision_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_decision_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..c41e0a85bfe391f2e8622cb0eb41e15a02979cbc --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_decision_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_decision_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_decision</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_decision divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_function_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_function_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddb14007ae6594bd2555206ceda5b5d07b8b9eaf --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_function_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_function_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_function</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_function divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_payment_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_payment_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..bfdd3e297299478982f09122d195c338da1bdc7d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_payment_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_payment_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_payment</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_payment divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_project_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_project_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4e7c15bc3e668d421ea5966e4942c22c38aa31d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_project_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_project_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_project</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_project divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_section_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_section_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b470fc8ab88312b81438d6e5e19d8f6b649a620 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_section_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_section_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination_section</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_section divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..3719fcedb21f2fa37e3b2bf2628db8790a75e74e --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/destination_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>destination_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/incoterm_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/incoterm_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..a261c79eb22222794d0e3c972077ab520d0ac253 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/incoterm_tester.xml @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>incoterm_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>incoterm</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>incoterm divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_currency_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_currency_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b19ba66421504c72216d4c48437bc20006e0a03 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_currency_tester.xml @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>price_currency_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>price_currency</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>price_currency divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..9abaacbae2cb0dc0bf31d3707440c2803586f595 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/price_tester.xml @@ -0,0 +1,121 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Float Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>price_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Float Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>price</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>price divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/quantity_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/quantity_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed61ac3b7e41e995cda58aa6d91147b33cc711bb --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/quantity_tester.xml @@ -0,0 +1,124 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Net Converted Quantity Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>use_delivery_ratio</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Net Converted Quantity Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> + <tuple> + <string>quantity</string> + <string>quantity_unit</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>quantity divergence tester</string> </value> + </item> + <item> + <key> <string>use_delivery_ratio</string> </key> + <value> <int>1</int> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/resource_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/resource_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..36c61150564d9e12b6f72612e5f1637116376ede --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/resource_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>resource_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>resource</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>resource divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_account_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_account_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..396ee7c75ea4862b22bb39b6457fb7b4d8bac595 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_account_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_account_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_account</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_account divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_administration_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_administration_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d5f191c5e61ab94048706d95c326b9d5d45c1d5 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_administration_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_administration_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_administration</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_administration divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_decision_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_decision_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..c7b8284b45e5a6fe8d49f523aebd18dd0fbff25c --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_decision_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_decision_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_decision</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_decision divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_function_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_function_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..20c9a23817b9740c02453e41cbeed5e4f087553a --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_function_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_function_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_function</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_function divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_payment_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_payment_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..864cf5250443eae0ccee41b5c6379df836f80213 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_payment_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_payment_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_payment</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_payment divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_project_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_project_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..8673aef9c7a30b3933a3e0a911f5150f53b9dad5 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_project_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_project_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_project</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_project divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_section_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_section_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..af4c1f18a785dcd0a45e6d54fbe2d6c6ab6a444f --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_section_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_section_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_section</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_section divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..f22c565f14c41789fa0c1108f8ab85f254e0b703 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/source_tester.xml @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>source_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/specialise_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/specialise_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..b55bac1535dda66040d858bdecaecc33cba72671 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/specialise_tester.xml @@ -0,0 +1,82 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Specialise Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>specialise_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Specialise Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>specialise</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Business Process must be consistent to make good prevision</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/start_date_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/start_date_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..c4b0ec7c8d3f0ef9fe513610e44fd9795c6aeb0b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/start_date_tester.xml @@ -0,0 +1,91 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <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>int</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>start_date_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>start_date</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>start_date divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/stop_date_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/stop_date_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ec85df7b8d7bb5e91441d2aa93319b14d4a3a41 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/stop_date_tester.xml @@ -0,0 +1,91 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <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>int</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>stop_date_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>stop_date</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>stop_date divergence tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/use_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/use_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..8fd8e67f7a6b726ac6228bef0ab26b8f4a18b163 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/use_tester.xml @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>use_tester</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>use</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>use divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/variation_tester.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/variation_tester.xml new file mode 100644 index 0000000000000000000000000000000000000000..e7a6145ebdad90abb55bdd9c9716ccd0d913508d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_delivery_root_simulation_rule/variation_tester.xml @@ -0,0 +1,116 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Variation Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <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>int</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>variation_tester</string> </value> + </item> + <item> + <key> <string>matching_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Variation Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> + <tuple> + <string>variation_category_list</string> + <string>variation_property_dict</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>variation divergence tester</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <tuple> + <global name="PersistentMapping" module="Persistence.mapping"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b55ad3f7d87fa36414a07d8cbfaa9e7bd68e910 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule.xml @@ -0,0 +1,308 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Inventory Asset Price Accounting Simulation Rule" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <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>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/inventory_accounting</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>default_inventory_accounting_transaction_rule</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Purchase</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>default_incoming_accounting_simulation_rule</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Inventory Asset Price Accounting Simulation Rule</string> </value> + </item> + <item> + <key> <string>same_total_quantity</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>test_method_id</string> </key> + <value> + <tuple> + <string>SimulationMovement_testIncomingInventoryAccountingTransactionRule</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Default Incoming Accounting Simulation Rule</string> </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>1</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</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="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <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">AAAAAAAAAAg=</string> </persistent> + </value> + </item> + <item> + <key> <string>rule_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAk=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="8" aka="AAAAAAAAAAg="> + <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.59952.12747.50039</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>1516771056.68</float> + <string>UTC</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="9" aka="AAAAAAAAAAk="> + <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>1516349771.61</float> + <string>UTC</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_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/1.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/1.xml new file mode 100644 index 0000000000000000000000000000000000000000..7797685cee121bb69b22864857ffc220266db6f1 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/1.xml @@ -0,0 +1,88 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>1</string> </value> + </item> + <item> + <key> <string>matching_provider</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_section</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_section_tester</string> </value> + </item> + <item> + <key> <string>updating_provider</string> </key> + <value> <int>1</int> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/2.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/2.xml new file mode 100644 index 0000000000000000000000000000000000000000..b402f7b68f44a332e871b73b753d26f47b2289ee --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/2.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Specialise Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>2</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Specialise Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>specialise</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>specialise_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/3.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/3.xml new file mode 100644 index 0000000000000000000000000000000000000000..84b4919b8dc7c18138bfa5f3c8dbaf6254594869 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/3.xml @@ -0,0 +1,143 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>solver/portal_solvers/Accept Solver</string> + <string>solver/portal_solvers/Adopt Solver</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>3</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>start_date</string> </value> + </item> + <item> + <key> <string>tested_property_title</string> </key> + <value> + <tuple> + <string>Start</string> + <string>Date</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>start_date_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/4.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/4.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ec9d92fc62b9b70756ade535d6ca256314d800b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/4.xml @@ -0,0 +1,129 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>4</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>stop_date</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>stop_date_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/5.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/5.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ba3950f090555fc6a9a7f9aac9c08589f483f6a --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/5.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>5</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>destination</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>destination_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/6.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/6.xml new file mode 100644 index 0000000000000000000000000000000000000000..c66fd40ecb04f8a5c1bfc30a0f17197047ed99ad --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/6.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>6</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>resource</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>resource_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/7.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/7.xml new file mode 100644 index 0000000000000000000000000000000000000000..51207ec5f319fa6f70d6917712791970db4cffdb --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/7.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>7</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>use</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>use_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/8.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/8.xml new file mode 100644 index 0000000000000000000000000000000000000000..7d7af646f52cc019c7993bb24fcfabff125075aa --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/8.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>8</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>ledger</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>ledger_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/9.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/9.xml new file mode 100644 index 0000000000000000000000000000000000000000..e51fc09e1946067f3101ef52bd3a0b4664afa67d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_incoming_accounting_simulation_rule/9.xml @@ -0,0 +1,119 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Float Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>decimal_alignment_enabled</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>9</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Float Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>quantity_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule.xml new file mode 100644 index 0000000000000000000000000000000000000000..c2884042785f7500429b609408aaaf2da47c9e32 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule.xml @@ -0,0 +1,308 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Inventory Asset Price Accounting Simulation Rule" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Modify_portal_content_Permission</string> </key> + <value> + <tuple> + <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>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/inventory_accounting</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>default_inventory_accounting_transaction_rule</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Sale</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>default_outgoing_accounting_simulation_rule</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Inventory Asset Price Accounting Simulation Rule</string> </value> + </item> + <item> + <key> <string>same_total_quantity</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>test_method_id</string> </key> + <value> + <tuple> + <string>SimulationMovement_testOutgoingInventoryAccountingTransactionRule</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Default Outgoing Accounting Simulation Rule</string> </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>1</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</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="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <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">AAAAAAAAAAg=</string> </persistent> + </value> + </item> + <item> + <key> <string>rule_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAk=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="8" aka="AAAAAAAAAAg="> + <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.57038.8522.55978</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>1516771070.4</float> + <string>UTC</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="9" aka="AAAAAAAAAAk="> + <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>1516174831.45</float> + <string>UTC</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_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/1.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/1.xml new file mode 100644 index 0000000000000000000000000000000000000000..7797685cee121bb69b22864857ffc220266db6f1 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/1.xml @@ -0,0 +1,88 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>1</string> </value> + </item> + <item> + <key> <string>matching_provider</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source_section</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_section_tester</string> </value> + </item> + <item> + <key> <string>updating_provider</string> </key> + <value> <int>1</int> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/2.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/2.xml new file mode 100644 index 0000000000000000000000000000000000000000..b402f7b68f44a332e871b73b753d26f47b2289ee --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/2.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Specialise Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>2</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Specialise Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>specialise</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>specialise_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/3.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/3.xml new file mode 100644 index 0000000000000000000000000000000000000000..84b4919b8dc7c18138bfa5f3c8dbaf6254594869 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/3.xml @@ -0,0 +1,143 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>solver/portal_solvers/Accept Solver</string> + <string>solver/portal_solvers/Adopt Solver</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>3</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>start_date</string> </value> + </item> + <item> + <key> <string>tested_property_title</string> </key> + <value> + <tuple> + <string>Start</string> + <string>Date</string> + </tuple> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>start_date_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/4.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/4.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ec9d92fc62b9b70756ade535d6ca256314d800b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/4.xml @@ -0,0 +1,129 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="DateTime Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>4</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>DateTime Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>stop_date</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>stop_date_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/5.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/5.xml new file mode 100644 index 0000000000000000000000000000000000000000..357be6fa6320ef9b6dc21c1a0f4ee4a9f1902600 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/5.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>5</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>source</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>source_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/6.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/6.xml new file mode 100644 index 0000000000000000000000000000000000000000..c66fd40ecb04f8a5c1bfc30a0f17197047ed99ad --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/6.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>6</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>resource</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>resource_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/7.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/7.xml new file mode 100644 index 0000000000000000000000000000000000000000..51207ec5f319fa6f70d6917712791970db4cffdb --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/7.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>7</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>use</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>use_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/8.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/8.xml new file mode 100644 index 0000000000000000000000000000000000000000..7d7af646f52cc019c7993bb24fcfabff125075aa --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/8.xml @@ -0,0 +1,80 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Membership Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>8</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Membership Divergence Tester</string> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>ledger</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>ledger_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/9.xml b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/9.xml new file mode 100644 index 0000000000000000000000000000000000000000..e51fc09e1946067f3101ef52bd3a0b4664afa67d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PathTemplateItem/portal_rules/default_outgoing_accounting_simulation_rule/9.xml @@ -0,0 +1,119 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Float Divergence Tester" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_min</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>quantity_range_max</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>float</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>decimal_alignment_enabled</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>divergence_provider</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>9</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Float Divergence Tester</string> </value> + </item> + <item> + <key> <string>quantity_range_max</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>quantity_range_min</string> </key> + <value> <float>0.0</float> </value> + </item> + <item> + <key> <string>tested_property</string> </key> + <value> <string>quantity</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>quantity_tester</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml b/bt5/erp5_real_time_inventory_accounting/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml new file mode 100644 index 0000000000000000000000000000000000000000..c286efec54430b38e094877ce689055bff49d5b9 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml @@ -0,0 +1,5 @@ +<allowed_content_type_list> + <portal_type id="Rule Tool"> + <item>Inventory Asset Price Accounting Simulation Rule</item> + </portal_type> +</allowed_content_type_list> \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/PortalTypeTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule.xml b/bt5/erp5_real_time_inventory_accounting/PortalTypeTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule.xml new file mode 100644 index 0000000000000000000000000000000000000000..3061c7d1aa3d0ab0682d7b10e693917cb35df61c --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PortalTypeTemplateItem/portal_types/Inventory%20Asset%20Price%20Accounting%20Simulation%20Rule.xml @@ -0,0 +1,82 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Base Type" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>acquire_local_roles</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>content_icon</string> </key> + <value> <string>document.gif</string> </value> + </item> + <item> + <key> <string>content_meta_type</string> </key> + <value> <string>ERP5 Invoice Transaction Simulation Rule</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>factory</string> </key> + <value> <string>addInvoiceTransactionSimulationRule</string> </value> + </item> + <item> + <key> <string>filter_content_types</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>group_list</string> </key> + <value> + <tuple> + <string>rule</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>Inventory Asset Price Accounting Simulation Rule</string> </value> + </item> + <item> + <key> <string>init_script</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>permission</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>type_class</string> </key> + <value> <string>InventoryAssetPriceAccountingSimulationRule</string> </value> + </item> + <item> + <key> <string>type_interface</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>type_mixin</string> </key> + <value> + <tuple/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml b/bt5/erp5_real_time_inventory_accounting/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml new file mode 100644 index 0000000000000000000000000000000000000000..c10cceed278e7ce3b1896067fbfcca9c4e63c1af --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml @@ -0,0 +1,6 @@ +<workflow_chain> + <chain> + <type>Inventory Asset Price Accounting Simulation Rule</type> + <workflow>edit_workflow, rule_validation_workflow</workflow> + </chain> +</workflow_chain> \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea91e50809434d53ea2ae435856d7636fefce4c7 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting.xml @@ -0,0 +1,26 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Folder" module="OFS.Folder"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>erp5_real_time_inventory_accounting</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.py b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.py new file mode 100644 index 0000000000000000000000000000000000000000..721a11dce6ca868f7fc09a288ab27f7bb93ad141 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.py @@ -0,0 +1,26 @@ +# InvoiceTransaction_postGeneration +accounting_transaction = context + +related_packing_list = accounting_transaction.getDefaultCausalityValue() +if not accounting_transaction.hasTitle() and related_packing_list is not None and related_packing_list.hasTitle(): + accounting_transaction.setTitle(related_packing_list.getTitle()) + +resource = None +ledger = None +for accounting_transaction_line in accounting_transaction.contentValues(portal_type='Accounting Transaction Line'): + line_resource = accounting_transaction_line.getResource() + if resource is None: + resource = line_resource + else: + assert resource == line_resource + accounting_transaction_line.setResource(None) + + line_ledger = accounting_transaction_line.getLedger() + if ledger is None: + ledger = line_ledger + else: + assert ledger == line_ledger + accounting_transaction_line.setLedger(None) + +accounting_transaction.setResource(resource) +accounting_transaction.setLedger(ledger) diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.xml new file mode 100644 index 0000000000000000000000000000000000000000..44e37dcc84fb6c7699476e7b54ac78565611bf58 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_postInventoryAssetPriceGeneration.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>related_simulation_movement_path_list=None, **kw</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>AccountingTransaction_postInventoryAssetPriceGeneration</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.py b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.py new file mode 100644 index 0000000000000000000000000000000000000000..bb6a9bb81df99434b610015d18667565f05a359b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.py @@ -0,0 +1,14 @@ +kw['parent_specialise_reference'] = ['default_inventory_accounting_transaction_rule'] +kw['grand_grand_parent_specialise_reference'] = ['default_delivering_rule', 'default_delivery_rule'] +kw['explanation_portal_type'] = ['Sale Packing List', 'Purchase Packing List'] +kw['portal_type'] = 'Simulation Movement' +kw['delivery_uid'] = None +kw['left_join_list'] = ['delivery_uid'] +kw['select_dict'] = dict(delivery_uid=None) +kw['group_by'] = ('uid',) +kw['simulation_state'] = ['planned', 'auto_planned'] + +result = context.portal_catalog(**kw) +context.log("%r => %r" % (kw, [brain.getObject() for brain in result])) + +return result diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a5484261e8ac7ec2db44245db703ed6149df95d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/AccountingTransaction_selectInventoryAssetPriceMovement.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>**kw</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>AccountingTransaction_selectInventoryAssetPriceMovement</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.py b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.py new file mode 100644 index 0000000000000000000000000000000000000000..f5e7562811e7347d7852876c8367ccf6d436ac9c --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.py @@ -0,0 +1,13 @@ +parent = context.getParentValue() +if parent.getPortalType() != 'Applied Rule': + return False + +if context.getUse() != 'trade/purchase': + return False + +parent_rule = parent.getSpecialiseValue() +if parent_rule.getPortalType() not in ('Delivery Root Simulation Rule', + 'Delivery Simulation Rule'): + return False + +return True diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.xml new file mode 100644 index 0000000000000000000000000000000000000000..63734ea5968f3f5f9bce94d17ea8b78c748f5b46 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testIncomingInventoryAccountingTransactionRule.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>rule</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>SimulationMovement_testIncomingInventoryAccountingTransactionRule</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.py b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.py new file mode 100644 index 0000000000000000000000000000000000000000..e8a0490feb1589bd6bcfc367e39961ddc9558ac9 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.py @@ -0,0 +1,21 @@ +movement = context + +parent = movement.getParentValue() +if parent.getPortalType() != 'Applied Rule': + return False + +parent_rule = parent.getSpecialiseValue() +if parent_rule.getPortalType() not in ('Inventory Asset Price Accounting Transaction Rule', + 'Invoice Root Simulation Rule', + 'Invoice Simulation Rule', + 'Trade Model Simulation Rule', + 'Pay Sheet Root Simulation Rule'): + return False + +delivery_movement = movement.getDeliveryValue() +if delivery_movement is not None and ( + delivery_movement.getPortalType() not in movement.getPortalInvoiceMovementTypeList() + and delivery_movement.getPortalType() not in movement.getPortalTaxMovementTypeList()): + return False + +return True diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.xml new file mode 100644 index 0000000000000000000000000000000000000000..355a97e1cbc385468b9bfa79f36fe2c176a41c7f --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testInvoiceTransactionSimulationRule.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>rule</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>SimulationMovement_testInvoiceTransactionSimulationRule</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.py b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.py new file mode 100644 index 0000000000000000000000000000000000000000..d9f11128a6c6db0902263eefa47b740fe92df0b1 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.py @@ -0,0 +1,13 @@ +parent = context.getParentValue() +if parent.getPortalType() != 'Applied Rule': + return False + +if context.getUse() != 'trade/sale': + return False + +parent_rule = parent.getSpecialiseValue() +if parent_rule.getPortalType() not in ('Delivery Root Simulation Rule', + 'Delivery Simulation Rule'): + return False + +return True diff --git a/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.xml b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.xml new file mode 100644 index 0000000000000000000000000000000000000000..06f69fd881820385e094ca8a4d7a6533cbe409ee --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting/SimulationMovement_testOutgoingInventoryAccountingTransactionRule.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>rule</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>SimulationMovement_testOutgoingInventoryAccountingTransactionRule</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting/bt/dependency_list b/bt5/erp5_real_time_inventory_accounting/bt/dependency_list new file mode 100644 index 0000000000000000000000000000000000000000..673c2ea0a826070bf858575b9aee96832d7945d4 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/dependency_list @@ -0,0 +1,5 @@ +erp5_accounting +erp5_configurator_standard_categories +erp5_configurator_standard_trade_template +erp5_invoicing +erp5_simulation \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/license b/bt5/erp5_real_time_inventory_accounting/bt/license new file mode 100644 index 0000000000000000000000000000000000000000..3a3e12bcad97e4b3bdd6a8bb499fd23a4bcb0819 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/license @@ -0,0 +1 @@ +GPL \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_action_path_list b/bt5/erp5_real_time_inventory_accounting/bt/template_action_path_list new file mode 100644 index 0000000000000000000000000000000000000000..addd65b8ca72cf86f20ee63fb48c8c5008236c81 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_action_path_list @@ -0,0 +1 @@ +Inventory Asset Price Accounting Simulation Rule | view \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_document_id_list b/bt5/erp5_real_time_inventory_accounting/bt/template_document_id_list new file mode 100644 index 0000000000000000000000000000000000000000..1d89b57dcfa542c4413e46fc7a9c32dbb50ab3a6 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_document_id_list @@ -0,0 +1 @@ +document.erp5.InventoryAssetPriceAccountingSimulationRule \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_format_version b/bt5/erp5_real_time_inventory_accounting/bt/template_format_version new file mode 100644 index 0000000000000000000000000000000000000000..56a6051ca2b02b04ef92d5150c9ef600403cb1de --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_format_version @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_keep_last_workflow_history_only_path_list b/bt5/erp5_real_time_inventory_accounting/bt/template_keep_last_workflow_history_only_path_list new file mode 100644 index 0000000000000000000000000000000000000000..b7e449eb49e60fec58eed20053734df988f166a5 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_keep_last_workflow_history_only_path_list @@ -0,0 +1,3 @@ +portal_rules/default_delivery_root_simulation_rule +portal_rules/default_incoming_accounting_simulation_rule +portal_rules/default_outgoing_accounting_simulation_rule \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_path_list b/bt5/erp5_real_time_inventory_accounting/bt/template_path_list new file mode 100644 index 0000000000000000000000000000000000000000..165b9751624a2260ad9bac4815e100434bec919d --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_path_list @@ -0,0 +1,10 @@ +portal_categories/trade_phase/trade/inventory_accounting +portal_categories/trade_state/inventory_accounted +portal_deliveries/inventory_asset_price_accounting_transaction_builder +portal_deliveries/inventory_asset_price_accounting_transaction_builder/** +portal_rules/default_delivery_root_simulation_rule +portal_rules/default_delivery_root_simulation_rule/** +portal_rules/default_incoming_accounting_simulation_rule +portal_rules/default_incoming_accounting_simulation_rule/** +portal_rules/default_outgoing_accounting_simulation_rule +portal_rules/default_outgoing_accounting_simulation_rule/** \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_allowed_content_type_list b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_allowed_content_type_list new file mode 100644 index 0000000000000000000000000000000000000000..e8305a1098252823543d4ca88f37c1d4ac886da5 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_allowed_content_type_list @@ -0,0 +1 @@ +Rule Tool | Inventory Asset Price Accounting Simulation Rule \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_id_list b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_id_list new file mode 100644 index 0000000000000000000000000000000000000000..588e2b2a0d0d0c88b913d8a0ef579d539c8f80a4 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_id_list @@ -0,0 +1 @@ +Inventory Asset Price Accounting Simulation Rule \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_workflow_chain_list b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_workflow_chain_list new file mode 100644 index 0000000000000000000000000000000000000000..5f60977aff4d166daa0a920682809c9be22a8f59 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_portal_type_workflow_chain_list @@ -0,0 +1,2 @@ +Inventory Asset Price Accounting Simulation Rule | edit_workflow +Inventory Asset Price Accounting Simulation Rule | rule_validation_workflow \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/template_skin_id_list b/bt5/erp5_real_time_inventory_accounting/bt/template_skin_id_list new file mode 100644 index 0000000000000000000000000000000000000000..98c91465f9f11682b27a0fd965cafe5d13448514 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/template_skin_id_list @@ -0,0 +1 @@ +erp5_real_time_inventory_accounting \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/title b/bt5/erp5_real_time_inventory_accounting/bt/title new file mode 100644 index 0000000000000000000000000000000000000000..98c91465f9f11682b27a0fd965cafe5d13448514 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/title @@ -0,0 +1 @@ +erp5_real_time_inventory_accounting \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting/bt/version b/bt5/erp5_real_time_inventory_accounting/bt/version new file mode 100644 index 0000000000000000000000000000000000000000..ceab6e11ece0bcec917c12e11d350946f085d549 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting/bt/version @@ -0,0 +1 @@ +0.1 \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge.xml new file mode 100644 index 0000000000000000000000000000000000000000..a13c658c282a3aa5fe4b468d05a271657e425318 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge.xml @@ -0,0 +1,312 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Business Process" 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>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAU=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAY=</string> </persistent> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>HOGE</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>bpm_hoge</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Business Process</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>HOGE Business Process</string> </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>1</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAc=</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="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="6" aka="AAAAAAAAAAY="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="7" aka="AAAAAAAAAAc="> + <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">AAAAAAAAAAg=</string> </persistent> + </value> + </item> + <item> + <key> <string>validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAk=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="8" aka="AAAAAAAAAAg="> + <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>965.4611.64003.10052</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>1516961817.69</float> + <string>UTC</string> + </tuple> + </state> + </object> + </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> + <record id="9" aka="AAAAAAAAAAk="> + <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>1515653958.66</float> + <string>UTC</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_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/deliver_link.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/deliver_link.xml new file mode 100644 index 0000000000000000000000000000000000000000..4de1c5d5e1d2365b8f1f7fedfc2480cf47ea71d9 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/deliver_link.xml @@ -0,0 +1,110 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Business Link" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/delivery</string> + <string>successor/trade_state/delivered</string> + </tuple> + </value> + </item> + <item> + <key> <string>completed_state</string> </key> + <value> + <tuple> + <string>delivered</string> + <string>started</string> + <string>stopped</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>deliver</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>frozen_state</string> </key> + <value> + <tuple> + <string>cancelled</string> + <string>delivered</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>deliver_link</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>language</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Business Link</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/delivery_path.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/delivery_path.xml new file mode 100644 index 0000000000000000000000000000000000000000..b20b016e97e07877e85d9967bdda160d84a0adb4 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/delivery_path.xml @@ -0,0 +1,98 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Trade Model Path" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/delivery</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>TMP-DELIVERY</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>delivery_path</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>language</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>payment_end_of_month</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Trade Model Path</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Delivery</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_account_link.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_account_link.xml new file mode 100644 index 0000000000000000000000000000000000000000..1fc415f7ec53ec47098e733ec14e5abfa20b419b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_account_link.xml @@ -0,0 +1,103 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Business Link" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>predecessor/trade_state/delivered</string> + <string>trade_phase/trade/inventory_accounting</string> + <string>successor/trade_state/inventory_accounted</string> + <string>delivery_builder/portal_deliveries/inventory_asset_price_accounting_transaction_builder</string> + <string>delivery_builder/portal_deliveries/sale_invoice_transaction_builder</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>inventory_account</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>frozen_state</string> </key> + <value> + <tuple> + <string>cancelled</string> + <string>delivered</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_account_link</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> + </item> + <item> + <key> <string>language</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Business Link</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_credit_path.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_credit_path.xml new file mode 100644 index 0000000000000000000000000000000000000000..7455ee98b29b6b5c32d7c0388d4a92549b76be5a --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_credit_path.xml @@ -0,0 +1,132 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Trade Model Path" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>ledger</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/inventory_accounting</string> + <string>ledger/stock</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>TMP-INVENTORY-ACCOUNTING-STOCK-LG-CREDIT</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>destination_method_id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerCreditDestination</string> </value> + </item> + <item> + <key> <string>efficiency</string> </key> + <value> <float>-1.0</float> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_accounting_stock_ledger_credit_path</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> + </item> + <item> + <key> <string>language</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>ledger</string> </key> + <value> <string>stock</string> </value> + </item> + <item> + <key> <string>payment_end_of_month</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Trade Model Path</string> </value> + </item> + <item> + <key> <string>source_method_id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerCreditSource</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Inventory Accounting Stock Ledger Credit</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_debit_path.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_debit_path.xml new file mode 100644 index 0000000000000000000000000000000000000000..36a07582449f935b84ceabcd0f09421bfac620cd --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/business_process_module/bpm_hoge/inventory_accounting_stock_ledger_debit_path.xml @@ -0,0 +1,128 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Trade Model Path" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_identity_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>ledger</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>_range_criterion</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>trade_phase/trade/inventory_accounting</string> + <string>ledger/stock</string> + </tuple> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>TMP-INVENTORY-ACCOUNTING-STOCK-LG-DEBIT</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>destination_method_id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerDebitDestination</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>inventory_accounting_stock_ledger_debit_path</string> </value> + </item> + <item> + <key> <string>int_index</string> </key> + <value> <int>2</int> </value> + </item> + <item> + <key> <string>language</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>ledger</string> </key> + <value> <string>stock</string> </value> + </item> + <item> + <key> <string>payment_end_of_month</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Trade Model Path</string> </value> + </item> + <item> + <key> <string>source_method_id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerDebitSource</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Inventory Accounting Stock Ledger Debit</string> </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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/achat.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/achat.xml new file mode 100644 index 0000000000000000000000000000000000000000..70beaca3b880493358ccd44e24e6b28311cb151a --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/achat.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>achat</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Achat</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/preparation.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/preparation.xml new file mode 100644 index 0000000000000000000000000000000000000000..76c113b76fa90b8f6aa8d1233eb8ac711076ec62 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/preparation.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preparation</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Preparation</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/production.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/production.xml new file mode 100644 index 0000000000000000000000000000000000000000..da0547e933c0331b25e5d1a35fa5da42f8e4b1bd --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/production.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>production</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Production</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/stock.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/stock.xml new file mode 100644 index 0000000000000000000000000000000000000000..d179475fae460089754b39c180391d2a44b16b28 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/stock.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>stock</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Stock</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/transit.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/transit.xml new file mode 100644 index 0000000000000000000000000000000000000000..283dbebcf373bcddc36c36d35238bfd8defe3654 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/transit.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>transit</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Transit</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/vente.xml b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/vente.xml new file mode 100644 index 0000000000000000000000000000000000000000..b92df41bea76c3a09ea52c7c1158ceb3b5ead4fc --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/PathTemplateItem/portal_categories/ledger/vente.xml @@ -0,0 +1,71 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_Add_portal_content_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Add_portal_folders_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Copy_or_Move_Permission</string> </key> + <value> + <tuple> + <string>Assignor</string> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>_Delete_objects_Permission</string> </key> + <value> + <tuple> + <string>Assignor</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>Manager</string> + <string>Owner</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>vente</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>Vente</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test.xml b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test.xml new file mode 100644 index 0000000000000000000000000000000000000000..c6a72eb259403467c7aae6ac06eadac5eb0bd0f2 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test.xml @@ -0,0 +1,26 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Folder" module="OFS.Folder"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>erp5_real_time_inventory_accounting_test</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.py b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.py new file mode 100644 index 0000000000000000000000000000000000000000..509604ad455965e0d4f3636256192e1cea758c0b --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.py @@ -0,0 +1,10 @@ +use = movement.getUse() +if use == 'trade/sale': + return [] +elif use == 'trade/purchase': + if movement.getDestination() == 'organisation_module/supplier': + return ['source/account_module/stock_parts_port'] +else: + raise NotImplementedError + +return [] diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.xml b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.xml new file mode 100644 index 0000000000000000000000000000000000000000..2bdb0922dc17c9750b19dd425194bfcfa7381270 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditDestination.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>movement</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerCreditDestination</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.py b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.py new file mode 100644 index 0000000000000000000000000000000000000000..6b3964ad925d6901732af394a9da5e71df996d4f --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.py @@ -0,0 +1,10 @@ +use = movement.getUse() +if use == 'trade/sale': + if movement.getSource() == 'organisation_module/hoge': + return ['source/account_module/variation_cars'] +elif use == 'trade/purchase': + return [] +else: + raise NotImplementedError + +return [] diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.xml b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.xml new file mode 100644 index 0000000000000000000000000000000000000000..3723f90a87f6db1085f03f947f38d4574b2011e9 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerCreditSource.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>movement</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerCreditSource</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.py b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.py new file mode 100644 index 0000000000000000000000000000000000000000..bb41fea2855b1ce51717d1d9945f331352cdd8eb --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.py @@ -0,0 +1,10 @@ +use = movement.getUse() +if use == 'trade/sale': + return [] +elif use == 'trade/purchase': + if movement.getDestination() == 'organisation_module/supplier': + return ['source/account_module/variation_parts'] +else: + raise NotImplementedError + +return [] diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.xml b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.xml new file mode 100644 index 0000000000000000000000000000000000000000..a60f4da0f80f3d202c3fdc48669b13ff7bffcfeb --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitDestination.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>movement</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerDebitDestination</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.py b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.py new file mode 100644 index 0000000000000000000000000000000000000000..5a4c61e1e0e2411d21b1a7feae1be95c4707c9d8 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.py @@ -0,0 +1,10 @@ +use = movement.getUse() +if use == 'trade/sale': + if movement.getSource() == 'organisation_module/hoge': + return ['source/account_module/stock_car_park'] +elif use == 'trade/purchase': + return [] +else: + raise NotImplementedError + +return [] diff --git a/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.xml b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.xml new file mode 100644 index 0000000000000000000000000000000000000000..faf2c5d439af7ff3aecb528f73e5814d8871f450 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/SkinTemplateItem/portal_skins/erp5_real_time_inventory_accounting_test/TradeModelPath_getInventoryAccountingStockLedgerDebitSource.xml @@ -0,0 +1,62 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>movement</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>TradeModelPath_getInventoryAccountingStockLedgerDebitSource</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.py b/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.py new file mode 100644 index 0000000000000000000000000000000000000000..79340a03aa0eecec2c8e8e9cc08a12a1a0623c63 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.py @@ -0,0 +1,531 @@ +# -*- coding: utf-8 -*- +############################################################################## +# Copyright (c) 2018 Nexedi SA and Contributors. All Rights Reserved. +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase +from Products.ERP5Type.tests.Sequence import SequenceList +from DateTime import DateTime + +class TestRealTimeInventoryAccountingMixin: + def assertIterableLen(self, iterable, expected_len): + if len(iterable) != expected_len: + self.fail('Length of %s is not equal to %d' % (repr(iterable), + expected_len)) + + def stepSelectSalePackingList1(self, sequence=None, sequence_list=None): + sequence.edit(current_sale_packing_list=sequence['sale_packing_list_1']) + + def stepSelectPurchasePackingList1(self, sequence=None, sequence_list=None): + sequence.edit(current_purchase_packing_list=sequence['purchase_packing_list_1']) + + def _transitAndCheck(self, document, workflow_method_id, expected_state): + from Products.DCWorkflow.DCWorkflow import ValidationFailed + try: + if workflow_method_id.endswith('_action'): + self.portal.portal_workflow.doActionFor(document, workflow_method_id) + else: + getattr(document, workflow_method_id)() + except ValidationFailed, error: + self.fail("Transition '%s' on %r should have succeeded (%s)" % \ + (workflow_method_id, document, + sorted([m.message for m in error.msg]))) + + try: + getState = document.getSimulationState + except AttributeError: + getState = document.getValidationState + self.assertEqual(getState(), expected_state) + self.tic() + + def stepConfirmSalePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_sale_packing_list'] + self._transitAndCheck(packing_list, 'confirm_action', 'confirmed') + + def stepStartSalePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_sale_packing_list'] + self._transitAndCheck(packing_list, 'start_action', 'started') + + def stepStopSalePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_sale_packing_list'] + self._transitAndCheck(packing_list, 'stop_action', 'stopped') + + def stepConfirmPurchasePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_purchase_packing_list'] + self._transitAndCheck(packing_list, 'confirm_action', 'confirmed') + + def stepStartPurchasePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_purchase_packing_list'] + self._transitAndCheck(packing_list, 'start_action', 'started') + + def stepStopPurchasePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_purchase_packing_list'] + self._transitAndCheck(packing_list, 'stop_action', 'stopped') + + def _checkAndGetCausalityRelated(self, + document, + causality_related_portal_type, + causality_related_list_expected_len): + causality_related_list = document.getCausalityRelatedValueList(portal_type=causality_related_portal_type) + self.assertIterableLen(causality_related_list, causality_related_list_expected_len) + return causality_related_list + + def stepCheckAccountingTransactionGeneratedFromSalePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_sale_packing_list'] + accounting_transaction = self._checkAndGetCausalityRelated(packing_list, 'Accounting Transaction', 1)[0] + sequence.edit(current_accounting_transaction=accounting_transaction) + + def stepCheckAccountingTransactionGeneratedFromPurchasePackingList(self, sequence=None, sequence_list=None): + packing_list = sequence['current_purchase_packing_list'] + accounting_transaction = self._checkAndGetCausalityRelated(packing_list, 'Accounting Transaction', 1)[0] + sequence.edit(current_accounting_transaction=accounting_transaction) + + def _checkDelivery(self, + delivery, + delivery_property_dict=None, + movement_property_dict_tuple=()): + if delivery_property_dict is not None: + for property_id, property_value in delivery_property_dict.iteritems(): + self.assertEquals(delivery.getProperty(property_id), property_value) + + if not movement_property_dict_tuple: + return + + movement_list = delivery.getMovementList() + self.assertIterableLen(movement_list, len(movement_property_dict_tuple)) + + unmatched_movement_dict_list = [] + for movement in movement_list: + for movement_property_dict in movement_property_dict_tuple: + if 'portal_type' not in movement_property_dict: + break + elif movement.getPortalType() == movement_property_dict['portal_type']: + break + + movement_dict = {} + for property_id in movement_property_dict: + movement_dict[property_id] = movement.getProperty(property_id) + + if movement_dict not in movement_property_dict_tuple: + unmatched_movement_dict_list.append(movement_dict) + + if unmatched_movement_dict_list: + from pprint import pformat + raise AssertionError( + "The following Movements does not exist on '%s':\n%s" % \ + (delivery.getRelativeUrl(), + pformat(unmatched_movement_dict_list))) + +class TestRealTimeInventoryAccounting(ERP5TypeTestCase, TestRealTimeInventoryAccountingMixin): + def afterSetUp(self): + category_tool = self.portal.portal_categories + + getattr(self.portal.portal_types, + 'Accounting Transaction').setLedgerValueList(category_tool.ledger.contentValues()) + + if 'my_group' not in category_tool.group: + category_tool.group.newContent(portal_type='Category', + id='my_group', + title='HOGE') + + if 'variation_cars' not in self.portal.account_module: + self.portal.account_module.newContent( + portal_type='Account', + id='variation_cars', + reference='VARIATION_CARS', + title='Variation des stocks de véhicules', + account_type_value=category_tool.account_type.expense, + financial_section_value=category_tool.financial_section.expense.op_expense.other, + gap_value=category_tool.gap.fr.pcg['6']['60']['603']['6037']) + + if 'stock_car_park' not in self.portal.account_module: + self.portal.account_module.newContent( + portal_type='Account', + id='stock_car_park', + reference='STOCK_CAR_PARK', + title='Stock Parc Véhicules', + account_type_value=category_tool.account_type.asset, + financial_section_value=category_tool.financial_section.asset.current_assets.stock, + gap_value=category_tool.gap.fr.pcg['3']['35']['355']) + + if 'variation_parts' not in self.portal.account_module: + self.portal.account_module.newContent( + portal_type='Account', + id='variation_parts', + reference='VARIATION_PARTS', + title='Variation des stocks de pièces', + account_type_value=category_tool.account_type.expense, + financial_section_value=category_tool.financial_section.expense.op_expense.other, + gap_value=category_tool.gap.fr.pcg['6']['60']['603']['6031']) + + if 'stock_parts_port' not in self.portal.account_module: + self.portal.account_module.newContent( + portal_type='Account', + id='stock_parts_port', + reference='STOCK_PARTS_PORT', + title='Stock Parts Port', + account_type_value=category_tool.account_type.asset, + financial_section_value=category_tool.financial_section.asset.current_assets.stock, + gap_value=category_tool.gap.fr.pcg['3']['32']['321']) + + try: + currency_eur = self.portal.currency_module.EUR + except AttributeError: + currency_eur = self.portal.currency_module.newContent( + portal_type='Currency', + id='EUR', + reference='EUR', + title='Euro', + base_unit_quantity=0.01) + if currency_eur.getValidationState() != 'validated': + currency_eur.validate() + + try: + currency_dol = self.portal.currency_module.DOL + except AttributeError: + currency_dol = self.portal.currency_module.newContent( + portal_type='Currency', + id='DOL', + reference='DOL', + title='Dollar', + base_unit_quantity=0.01) + if currency_dol.getValidationState() != 'validated': + currency_dol.validate() + + try: + organisation_hoge = self.portal.organisation_module.hoge + except AttributeError: + organisation_hoge = self.portal.organisation_module.newContent( + portal_type='Organisation', + id='hoge', + title='HOGE', + price_currency_value=currency_eur, + group_value=category_tool.group.my_group, + site_value=category_tool.site.main) + if organisation_hoge.getValidationState() != 'validated': + organisation_hoge.validate() + + try: + organisation_client = self.portal.organisation_module.client + except AttributeError: + organisation_client = self.portal.organisation_module.newContent( + portal_type='Organisation', + id='client', + title='Client', + price_currency_value=currency_eur, + role_value=category_tool.role.client) + if organisation_client.getValidationState() != 'validated': + organisation_client.validate() + + try: + organisation_supplier = self.portal.organisation_module.supplier + except AttributeError: + organisation_supplier = self.portal.organisation_module.newContent( + portal_type='Organisation', + id='supplier', + title='Supplier', + role_value=category_tool.role.supplier) + if organisation_supplier.getValidationState() != 'validated': + organisation_supplier.validate() + + try: + currency_dol_conversion_eur = currency_dol.CONV_EUR + except AttributeError: + currency_dol_conversion_eur = currency_dol.newContent( + portal_type='Currency Exchange Line', + id='CONV_EUR', + title='Conversion Euro', + start_date=DateTime('2017/01/01 00:00:00 GMT+9'), + stop_date=DateTime('2021/01/01 00:00:00 GMT+9'), + price_currency_value=currency_eur, + source_value=organisation_hoge, + base_price=0.95) + if currency_dol_conversion_eur.getValidationState() != 'validated': + currency_dol_conversion_eur.validate() + + try: + stc = self.portal.sale_trade_condition_module.hoge + except AttributeError: + stc = self.portal.sale_trade_condition_module.newContent( + portal_type='Sale Trade Condition', + id='hoge', + reference='STC-HOGE', + title='HOGE Sale Trade Condition', + source_value=organisation_hoge, + source_section_value=organisation_hoge, + price_currency_value=currency_eur, + specialise_value=self.portal.business_process_module.bpm_hoge) + if stc.getValidationState() != 'validated': + stc.validate() + + try: + ptc = self.portal.purchase_trade_condition_module.hoge + except AttributeError: + ptc = self.portal.purchase_trade_condition_module.newContent( + portal_type='Purchase Trade Condition', + id='hoge', + reference='PTC-HOGE', + title='HOGE Purchase Trade Condition', + destination_value=organisation_hoge, + destination_section_value=organisation_hoge, + price_currency_value=currency_eur, + specialise_value=self.portal.business_process_module.bpm_hoge) + if ptc.getValidationState() != 'validated': + ptc.validate() + + try: + product_big_b_car = self.portal.product_module.big_b_car + except AttributeError: + product_big_b_car = self.portal.product_module.newContent( + portal_type='Product', + id='big_b_car', + title='Big B Car', + reference='543216789', + product_line_value=category_tool.product_line.component, + use_value=category_tool.use.trade.purchase, + quantity_unit_value=category_tool.quantity_unit.unit.piece) + if product_big_b_car.getValidationState() != 'validated': + product_big_b_car.validate() + + try: + product_part_1 = self.portal.product_module.part_1 + except AttributeError: + product_part_1 = self.portal.product_module.newContent( + portal_type='Product', + id='part_1', + title='Part 1', + reference='12345', + product_line_value=category_tool.product_line.component, + use_value=category_tool.use.trade.purchase, + quantity_unit_value=category_tool.quantity_unit.unit.piece) + if product_part_1.getValidationState() != 'validated': + product_part_1.validate() + + try: + product_part_2 = self.portal.product_module.part_2 + except AttributeError: + product_part_2 = self.portal.product_module.newContent( + portal_type='Product', + id='part_2', + title='Part 2', + reference='67891', + product_line_value=category_tool.product_line.component, + use_value=category_tool.use.trade.purchase, + quantity_unit_value=category_tool.quantity_unit.unit.piece) + if product_part_2.getValidationState() != 'validated': + product_part_2.validate() + + try: + sale_supply = self.portal.sale_supply_module.hoge + except AttributeError: + sale_supply = self.portal.sale_supply_module.newContent( + portal_type='Sale Supply', + id='hoge', + title='HOGE Sale Supply', + start_date_range_min=DateTime('2018/01/01 00:00:00 GMT+9'), + start_date_range_max=DateTime('2999/12/31 00:00:00 GMT+9'), + source_section_value=organisation_hoge) + if 'product_big_b_car' not in sale_supply: + sale_supply.newContent( + portal_type='Sale Supply Line', + id='product_big_b_car', + title=product_big_b_car.getTitle(), + resource_value=product_big_b_car, + base_price=18100) + if sale_supply.getValidationState() != 'validated': + sale_supply.validate() + + try: + purchase_supply = self.portal.purchase_supply_module.hoge + except AttributeError: + purchase_supply = self.portal.purchase_supply_module.newContent( + portal_type='Purchase Supply', + id='hoge', + title='HOGE Purchase Supply', + start_date_range_min=DateTime('2018/01/01 00:00:00 GMT+9'), + start_date_range_max=DateTime('2999/12/31 00:00:00 GMT+9'), + destination_section_value=organisation_hoge) + if 'product_part_1' not in purchase_supply: + purchase_supply.newContent( + portal_type='Purchase Supply Line', + id='product_part_1', + title=product_part_1.getTitle(), + resource_value=product_part_1, + base_price=9000) + if purchase_supply.getValidationState() != 'validated': + purchase_supply.validate() + + self.tic() + + def stepCallBuilder(self, sequence=None, sequence_list=None): + self.portal.portal_deliveries.inventory_asset_price_accounting_transaction_builder.build() + + def stepTestSalePackingList_create(self, sequence=None, sequence_list=None): + sale_packing_list = self.portal.sale_packing_list_module.newContent( + portal_type='Sale Packing List', + specialise_value=self.portal.sale_trade_condition_module.hoge, + title='Vente depuis le Prac', + start_date=DateTime('2018/01/30 00:00:00 GMT+9'), + stop_date=DateTime('2018/01/31 00:00:00 GMT+9'), + source_value=self.portal.organisation_module.hoge, + source_section_value=self.portal.organisation_module.hoge, + destination_value=self.portal.organisation_module.client, + destination_section_value=self.portal.organisation_module.client, + price_currency_value=self.portal.currency_module.DOL) + + sale_packing_list.newContent( + portal_type='Sale Packing List Line', + title='Vente voiture', + int_index=1, + resource_value=self.portal.product_module.big_b_car, + price=17100, + quantity=1, + quantity_unit_value=self.portal.portal_categories.quantity_unit.unit.piece, + use_value=self.portal.portal_categories.use.trade.sale) + + sequence.edit(sale_packing_list_1=sale_packing_list) + + def stepTestSalePackingList_checkAllAccountingTransaction(self, sequence=None, sequence_list=None): + accounting_transaction = sequence['current_accounting_transaction'] + self.assertEquals(accounting_transaction.getSimulationState(), 'draft') + self._checkDelivery( + accounting_transaction, + delivery_property_dict=dict( + source_section_value=self.portal.organisation_module.hoge, + resource_value=self.portal.currency_module.DOL, + ledger_value=self.portal.portal_categories.ledger.stock, + # start_date=stop_date=SPL.start_date + start_date=DateTime('2018/01/30 00:00:00 GMT+9'), + stop_date=DateTime('2018/01/30 00:00:00 GMT+9')), + movement_property_dict_tuple=( + dict(portal_type='Accounting Transaction Line', + source_value=self.portal.account_module.variation_cars, + # sum(SPLL.price) + quantity=-17100), + dict(portal_type='Accounting Transaction Line', + source_value=self.portal.account_module.stock_car_park, + # sum(SPLL.price) + quantity=17100))) + + def testSalePackingList(self): + sequence_list = SequenceList() + sequence_str = """ + TestSalePackingList_create + Tic + SelectSalePackingList1 + ConfirmSalePackingList + Tic + StartSalePackingList + Tic + StopSalePackingList + Tic + CallBuilder + Tic + CheckAccountingTransactionGeneratedFromSalePackingList + TestSalePackingList_checkAllAccountingTransaction + """ + sequence_list.addSequenceString(sequence_str) + sequence_list.play(self, quiet=0) + + def stepTestPurchasePackingList_create(self, sequence=None, sequence_list=None): + purchase_packing_list = self.portal.purchase_packing_list_module.newContent( + portal_type='Purchase Packing List', + specialise_value=self.portal.purchase_trade_condition_module.hoge, + title='Reception Supplier', + start_date=DateTime('2018/01/09 00:00:00 GMT+9'), + stop_date=DateTime('2018/01/10 00:00:00 GMT+9'), + source_value=self.portal.organisation_module.hoge, + source_section_value=self.portal.organisation_module.supplier, + destination_value=self.portal.organisation_module.supplier, + destination_section_value=self.portal.organisation_module.hoge, + price_currency_value=self.portal.currency_module.DOL) + + purchase_packing_list.newContent( + portal_type='Purchase Packing List Line', + int_index=1, + resource_value=self.portal.product_module.part_1, + price=8000, + quantity=1, + quantity_unit_value=self.portal.portal_categories.quantity_unit.unit.piece, + use_value=self.portal.portal_categories.use.trade.purchase) + + purchase_packing_list.newContent( + portal_type='Purchase Packing List Line', + int_index=2, + resource_value=self.portal.product_module.part_2, + price=6000, + quantity=1, + quantity_unit_value=self.portal.portal_categories.quantity_unit.unit.piece, + use_value=self.portal.portal_categories.use.trade.purchase) + + sequence.edit(purchase_packing_list_1=purchase_packing_list) + + def stepTestPurchasePackingList_checkAllAccountingTransaction(self, sequence=None, sequence_list=None): + accounting_transaction = sequence['current_accounting_transaction'] + self.assertEquals(accounting_transaction.getSimulationState(), 'draft') + self._checkDelivery( + accounting_transaction, + delivery_property_dict=dict( + source_section_value=self.portal.organisation_module.hoge, + resource_value=self.portal.currency_module.DOL, + ledger_value=self.portal.portal_categories.ledger.stock, + # start_date=stop_date=PPL.stop_date + start_date=DateTime('2018/01/10 00:00:00 GMT+9'), + stop_date=DateTime('2018/01/10 00:00:00 GMT+9')), + movement_property_dict_tuple=( + dict(portal_type='Accounting Transaction Line', + source_value=self.portal.account_module.stock_parts_port, + # sum(PPLL.price) + quantity=-14000), + dict(portal_type='Accounting Transaction Line', + source_value=self.portal.account_module.variation_parts, + # sum(PPLL.price) + quantity=14000))) + + def testPurchasePackingList(self): + sequence_list = SequenceList() + sequence_str = """ + TestPurchasePackingList_create + Tic + SelectPurchasePackingList1 + ConfirmPurchasePackingList + Tic + StartPurchasePackingList + Tic + StopPurchasePackingList + Tic + CallBuilder + Tic + CheckAccountingTransactionGeneratedFromPurchasePackingList + TestPurchasePackingList_checkAllAccountingTransaction + """ + sequence_list.addSequenceString(sequence_str) + sequence_list.play(self, quiet=0) + +import unittest +def test_suite(): + suite = unittest.TestSuite() + suite.addTest(unittest.makeSuite(TestRealTimeInventoryAccounting)) + return suite diff --git a/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.xml b/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.xml new file mode 100644 index 0000000000000000000000000000000000000000..49883a85c76d1a0c9e505de5e189d0aadd824c85 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/TestTemplateItem/portal_components/test.erp5.testRealTimeInventoryAccounting.xml @@ -0,0 +1,123 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Test Component" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_recorded_property_dict</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>testRealTimeInventoryAccounting</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>test.erp5.testRealTimeInventoryAccounting</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Test Component</string> </value> + </item> + <item> + <key> <string>sid</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>text_content_error_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>text_content_warning_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>erp5</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</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/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>component_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </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>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/dependency_list b/bt5/erp5_real_time_inventory_accounting_test/bt/dependency_list new file mode 100644 index 0000000000000000000000000000000000000000..98c91465f9f11682b27a0fd965cafe5d13448514 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/dependency_list @@ -0,0 +1 @@ +erp5_real_time_inventory_accounting \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/license b/bt5/erp5_real_time_inventory_accounting_test/bt/license new file mode 100644 index 0000000000000000000000000000000000000000..3a3e12bcad97e4b3bdd6a8bb499fd23a4bcb0819 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/license @@ -0,0 +1 @@ +GPL \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/template_format_version b/bt5/erp5_real_time_inventory_accounting_test/bt/template_format_version new file mode 100644 index 0000000000000000000000000000000000000000..56a6051ca2b02b04ef92d5150c9ef600403cb1de --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/template_format_version @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/template_keep_last_workflow_history_only_path_list b/bt5/erp5_real_time_inventory_accounting_test/bt/template_keep_last_workflow_history_only_path_list new file mode 100644 index 0000000000000000000000000000000000000000..1709c09d3807d917453e1edc3057896df702eb70 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/template_keep_last_workflow_history_only_path_list @@ -0,0 +1 @@ +business_process_module/bpm_hoge \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/template_path_list b/bt5/erp5_real_time_inventory_accounting_test/bt/template_path_list new file mode 100644 index 0000000000000000000000000000000000000000..9e98f0439a231bde6f7f1dc4fd5167c5a20a648c --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/template_path_list @@ -0,0 +1,3 @@ +business_process_module/bpm_hoge +business_process_module/bpm_hoge/** +portal_categories/ledger/** \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/template_skin_id_list b/bt5/erp5_real_time_inventory_accounting_test/bt/template_skin_id_list new file mode 100644 index 0000000000000000000000000000000000000000..ebcc1d13319fc935ef9dbc3df36390abe8009ee3 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/template_skin_id_list @@ -0,0 +1 @@ +erp5_real_time_inventory_accounting_test \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/template_test_id_list b/bt5/erp5_real_time_inventory_accounting_test/bt/template_test_id_list new file mode 100644 index 0000000000000000000000000000000000000000..d83bba61476fbf8e19261799039c8ac203f77dde --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/template_test_id_list @@ -0,0 +1 @@ +test.erp5.testRealTimeInventoryAccounting \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/test_dependency_list b/bt5/erp5_real_time_inventory_accounting_test/bt/test_dependency_list new file mode 100644 index 0000000000000000000000000000000000000000..1c77fc1b05d22d588d3462df3117cbeff88d5597 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/test_dependency_list @@ -0,0 +1,2 @@ +erp5_accounting_l10n_fr +erp5_full_text_mroonga_catalog \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/title b/bt5/erp5_real_time_inventory_accounting_test/bt/title new file mode 100644 index 0000000000000000000000000000000000000000..ebcc1d13319fc935ef9dbc3df36390abe8009ee3 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/title @@ -0,0 +1 @@ +erp5_real_time_inventory_accounting_test \ No newline at end of file diff --git a/bt5/erp5_real_time_inventory_accounting_test/bt/version b/bt5/erp5_real_time_inventory_accounting_test/bt/version new file mode 100644 index 0000000000000000000000000000000000000000..ceab6e11ece0bcec917c12e11d350946f085d549 --- /dev/null +++ b/bt5/erp5_real_time_inventory_accounting_test/bt/version @@ -0,0 +1 @@ +0.1 \ No newline at end of file