diff --git a/bt5/erp5_banking_check/ModuleTemplateItem/check_deposit_module.xml b/bt5/erp5_banking_check/ModuleTemplateItem/check_deposit_module.xml index 88fb2d8b742ba294b93c056af1499c125e5904a1..b5a12c8b883ce0ab79c5754c41a7bdb089bef248 100644 --- a/bt5/erp5_banking_check/ModuleTemplateItem/check_deposit_module.xml +++ b/bt5/erp5_banking_check/ModuleTemplateItem/check_deposit_module.xml @@ -454,6 +454,9 @@ <name>Change proxy roles</name> <role>Manager</role> </permission> + <permission type='tuple'> + <name>Change user folder</name> + </permission> <permission type='tuple'> <name>Copy or Move</name> <role>Manager</role> diff --git a/bt5/erp5_banking_check/ModuleTemplateItem/check_payment_module.xml b/bt5/erp5_banking_check/ModuleTemplateItem/check_payment_module.xml index a326799079a6ddf779a8cef5eb2596b3f78e5fae..06cc547b70dfc430e1eeed772528a2b90527ae27 100644 --- a/bt5/erp5_banking_check/ModuleTemplateItem/check_payment_module.xml +++ b/bt5/erp5_banking_check/ModuleTemplateItem/check_payment_module.xml @@ -454,6 +454,9 @@ <name>Change proxy roles</name> <role>Manager</role> </permission> + <permission type='tuple'> + <name>Change user folder</name> + </permission> <permission type='tuple'> <name>Copy or Move</name> <role>Manager</role> diff --git a/bt5/erp5_banking_check/ModuleTemplateItem/checkbook_reception_module.xml b/bt5/erp5_banking_check/ModuleTemplateItem/checkbook_reception_module.xml index c24e983c708f97ccd6714758354980c3097d5527..c685c1cf2833c21f0ac9eda784ba5fe61246072c 100644 --- a/bt5/erp5_banking_check/ModuleTemplateItem/checkbook_reception_module.xml +++ b/bt5/erp5_banking_check/ModuleTemplateItem/checkbook_reception_module.xml @@ -454,6 +454,9 @@ <name>Change proxy roles</name> <role>Manager</role> </permission> + <permission type='tuple'> + <name>Change user folder</name> + </permission> <permission type='tuple'> <name>Copy or Move</name> <role>Manager</role> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDelivery_generateCheckDetailInputDialog.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDelivery_generateCheckDetailInputDialog.xml index 737c8d96cb3adbfba115f6bac4a15de395560a1d..98e0179baf7ef0ff6af100ab2668faa16cdf6b28 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDelivery_generateCheckDetailInputDialog.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDelivery_generateCheckDetailInputDialog.xml @@ -80,6 +80,14 @@ context.log(\'resource\',resource)\n item_model = context.getPortalObject().restrictedTraverse(resource)\n context.log(\'item_model\',item_model)\n \n +# We muste make sure that the selection is not None\n +# or the validator of the Listbox will not work\n +from Products.ERP5Form.Selection import Selection\n +selection = context.portal_selections.getSelectionFor(\'Check_fastInputForm_selection\')\n +if selection is None:\n + selection = Selection()\n +context.portal_selections.setSelectionFor(\'Check_fastInputForm_selection\',selection)\n +\n global error_value\n error_value = 0\n global field_error_dict\n @@ -129,6 +137,8 @@ else:\n else:\n account = account_list[0]\n line[\'destination_payment_relative_url\'] = account.getRelativeUrl()\n + destination_trade = account.getParentValue()\n + line[\'destination_trade_relative_url\'] = destination_trade.getRelativeUrl()\n if reference_range_min in (None,\'\'):\n message = \'Please set a start number\'\n generate_error(line,\'reference_range_min\',message)\n @@ -240,6 +250,9 @@ else:\n <string>resource</string> <string>previous_resource</string> <string>item_model</string> + <string>Products.ERP5Form.Selection</string> + <string>Selection</string> + <string>selection</string> <string>error_value</string> <string>field_error_dict</string> <string>generate_error</string> @@ -262,6 +275,7 @@ else:\n <string>_getitem_</string> <string>account</string> <string>_write_</string> + <string>destination_trade</string> <string>check_quantity</string> <string>check_amount_relative_url</string> <string>check_amount_value</string> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelItemList.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelItemList.xml index f7ab41eb6c7ae8ba7ab74e51cfd9f85133394ccb..bffa7e7397679beb41d85da063f8e0974af3832f 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelItemList.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelItemList.xml @@ -71,7 +71,7 @@ <value> <string>from Products.ERP5Type.Message import Message\n \n model_list = [x.getObject() for x in context.checkbook_model_module.searchFolder()]\n -result_list = [(x.getTitle(),x.getRelativeUrl()) for x in model_list]\n +result_list = [(x.getTitle(),x.getRelativeUrl()) for x in model_list if not x.isInsideCheckbook()]\n return result_list\n </string> </value> </item> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelVariationltemList.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelVariationltemList.xml index 417aff0ff37ea5853e48cf304b8bc67652552fb1..bf4cc35d7de467ac06638cb1cc5151fbf3c6703c 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelVariationltemList.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_getItemModelVariationltemList.xml @@ -75,7 +75,7 @@ if resource in (None,\'None\'):\n item_model = context.getPortalObject().restrictedTraverse(resource)\n context.log(\'CheckDetail_getItemModelVariationltemList item_model\',item_model)\n \n -return item_model.getVariationRangeCategoryItemList(display_id=\'title\')\n +return item_model.getVariationRangeCategoryItemList(display_id=\'title\',display_base_category=0)\n </string> </value> </item> <item> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_saveFastInputLine.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_saveFastInputLine.xml index 60bc0efc05fb44bbfda3d10705ddded3c3741ce5..e3c472cb244e146f5649ad96ec427fd44e8f32d8 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_saveFastInputLine.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_saveFastInputLine.xml @@ -68,7 +68,9 @@ </item> <item> <key> <string>_body</string> </key> - <value> <string># get the list of movement we need to create\n + <value> <string encoding="cdata"><![CDATA[ + +# get the list of movement we need to create\n \n # First call the first scripts wich check many things\n error_value = context.CheckDelivery_generateCheckDetailInputDialog(\n @@ -91,6 +93,8 @@ if item_model.getPortalType()==\'Check\':\n \n create_line = 0\n aggregate_data_list = []\n +context.log(\'CheckDetail_saveFastInputLine, listbox\',listbox)\n +number_of_line_created = 0\n for line in listbox:\n add_line = 0\n quantity = line[\'quantity\']\n @@ -108,6 +112,9 @@ for line in listbox:\n if destination_payment_relative_url not in (None,\'\'):\n add_line = 1\n line_kw_dict[\'destination_payment\'] = destination_payment_relative_url\n + destination_trade_relative_url = line.get(\'destination_trade_relative_url\',None)\n + if destination_trade_relative_url not in (None,\'\'):\n + line_kw_dict[\'destination_trade\'] = destination_trade_relative_url\n reference_range_min = line.get(\'reference_range_min\',None)\n if reference_range_min not in (None,\'\'):\n line_kw_dict[\'reference_range_min\'] = reference_range_min\n @@ -118,17 +125,23 @@ for line in listbox:\n if check_amount_relative_url not in (None,\'\'):\n line_kw_dict[\'check_amount\'] = check_amount_relative_url\n if add_line:\n + number_of_line_created += 1\n context.newContent(portal_type=line_portal_type,**line_kw_dict)\n \n \n \n \n request = context.REQUEST\n +message = "No%%20Lines%%20Created"\n +if number_of_line_created>0:\n + message = "Lines%%20Created"\n redirect_url = \'%s/view?%s\' % ( context.absolute_url()\n - , \'portal_status_message=Lines Created\'\n + , \'portal_status_message=%s%%20Created\' % message\n )\n request[ \'RESPONSE\' ].redirect( redirect_url )\n -</string> </value> + + +]]></string> </value> </item> <item> <key> <string>_code</string> </key> @@ -203,6 +216,7 @@ request[ \'RESPONSE\' ].redirect( redirect_url )\n <string>item_module_id</string> <string>create_line</string> <string>aggregate_data_list</string> + <string>number_of_line_created</string> <string>_getiter_</string> <string>line</string> <string>add_line</string> @@ -213,9 +227,11 @@ request[ \'RESPONSE\' ].redirect( redirect_url )\n <string>line_kw_dict</string> <string>_write_</string> <string>destination_payment_relative_url</string> + <string>destination_trade_relative_url</string> <string>reference_range_min</string> <string>reference_range_max</string> <string>check_amount_relative_url</string> + <string>message</string> <string>redirect_url</string> </tuple> </value> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_viewLineFastInputForm.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_viewLineFastInputForm.xml index b44166eba3c0f719751f631cd490072b1f9e60d6..09810e70b5c6f354ec1f30e7c8ba33dd79925b69 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_viewLineFastInputForm.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckDetail_viewLineFastInputForm.xml @@ -80,7 +80,7 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list> <string>listbox</string> @@ -88,13 +88,13 @@ </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list/> </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list> <string>listbox_quantity</string> @@ -109,7 +109,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_resource</string> @@ -118,7 +118,7 @@ </value> </item> <item> - <key> <string>right</string> </key> + <key> <string>right</string> </key> <value> <list/> </value> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_getBaobabSourcePayment.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_getBaobabSourcePayment.xml index 8823824df901e148b36221f6a06682131c872ba4..892768de8d650084b2f56cab34e09ddacc362db7 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_getBaobabSourcePayment.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_getBaobabSourcePayment.xml @@ -68,7 +68,7 @@ </item> <item> <key> <string>_body</string> </key> - <value> <string>return \'source_payment/organisation_module/2/1\'\n + <value> <string>return context.Baobab_getPortalDefaultPaymentNode()\n </string> </value> </item> <item> @@ -89,7 +89,7 @@ </item> <item> <key> <string>_params</string> </key> - <value> <string></string> </value> + <value> <string>**kw</string> </value> </item> <item> <key> <string>errors</string> </key> @@ -114,7 +114,11 @@ <item> <key> <string>co_varnames</string> </key> <value> - <tuple/> + <tuple> + <string>kw</string> + <string>_getattr_</string> + <string>context</string> + </tuple> </value> </item> </dictionary> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_view/my_source_total_asset_price.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_view/my_source_total_asset_price.xml index 0021311532e91ce61dcea8fd38869c41dd707f72..aa8c69a76ff06d7380fa0a8786707d828a0fbc10 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_view/my_source_total_asset_price.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckPayment_view/my_source_total_asset_price.xml @@ -168,9 +168,7 @@ </item> <item> <key> <string>precision</string> </key> - <value> - <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> - </value> + <value> <string></string> </value> </item> <item> <key> <string>required</string> </key> @@ -241,7 +239,7 @@ </item> <item> <key> <string>precision</string> </key> - <value> <string></string> </value> + <value> <int>0</int> </value> </item> <item> <key> <string>required</string> </key> @@ -249,7 +247,7 @@ </item> <item> <key> <string>title</string> </key> - <value> <string>Money Quantity</string> </value> + <value> <string>Price</string> </value> </item> <item> <key> <string>whitespace_preserve</string> </key> @@ -280,23 +278,4 @@ </dictionary> </pickle> </record> - <record id="3" aka="AAAAAAAAAAM="> - <pickle> - <tuple> - <tuple> - <string>Products.Formulator.TALESField</string> - <string>TALESMethod</string> - </tuple> - <none/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>_text</string> </key> - <value> <string>here.getBaobabSourcePaymentValue().getPriceCurrencyValue().getQuantityPrecision()</string> </value> - </item> - </dictionary> - </pickle> - </record> </ZopeData> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDeliveryLine_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDeliveryLine_view.xml index aef9f78c999d5c35d863f88666bab917260d9014..dca03ec1b749cd0fac3a72520a9a7a34f8e1a6da 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDeliveryLine_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDeliveryLine_view.xml @@ -80,19 +80,19 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list/> </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list/> </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list> <string>my_aggregate_list</string> @@ -100,7 +100,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_resource_title</string> @@ -110,7 +110,7 @@ </value> </item> <item> - <key> <string>rigth</string> </key> + <key> <string>rigth</string> </key> <value> <list/> </value> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDelivery_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDelivery_view.xml index 1ff90640d17821a8ff50bbe343136d3555e8bf3f..9a7efffdc67f75caaa03311a9e5eb8a0aa4607c9 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDelivery_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookDelivery_view.xml @@ -79,7 +79,7 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list> <string>listbox</string> @@ -87,7 +87,7 @@ </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list> <string>my_simulation_state</string> @@ -95,7 +95,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_id</string> @@ -106,7 +106,7 @@ </value> </item> <item> - <key> <string>rigth</string> </key> + <key> <string>rigth</string> </key> <value> <list> <string>my_start_date</string> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModelCheckAmountVariation_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModelCheckAmountVariation_view.xml index a7c90f8ba6fcfea141e0d7d5aa84aa16ed47ef07..e525294e1064ff9e12befc5b796dae9e6b717cda 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModelCheckAmountVariation_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModelCheckAmountVariation_view.xml @@ -80,25 +80,25 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list/> </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list/> </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list/> </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_title</string> @@ -108,7 +108,7 @@ </value> </item> <item> - <key> <string>right</string> </key> + <key> <string>right</string> </key> <value> <list/> </value> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModel_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModel_view.xml index 57848155f55125e4d9e3d9bd39c4cfbf5c51439b..6388be860ef36c482d0383272c39a058a7312476 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModel_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookModel_view.xml @@ -80,7 +80,7 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list> <string>listbox</string> @@ -88,13 +88,13 @@ </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list/> </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list> <string>listbox_quantity</string> @@ -102,7 +102,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_title</string> @@ -113,7 +113,7 @@ </value> </item> <item> - <key> <string>right</string> </key> + <key> <string>right</string> </key> <value> <list/> </value> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReceptionLine_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReceptionLine_view.xml index 30fc2f4ae5bf493ec752ced072e3fb8d7f2458d2..b09c4d9a766b033a7945c626b37f23a1c713f356 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReceptionLine_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReceptionLine_view.xml @@ -80,13 +80,13 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list/> </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list> <string>my_description</string> @@ -94,7 +94,7 @@ </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list> <string>my_check_number</string> @@ -102,7 +102,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_quantity</string> @@ -113,7 +113,7 @@ </value> </item> <item> - <key> <string>rigth</string> </key> + <key> <string>rigth</string> </key> <value> <list> <string>my_resource_title</string> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReception_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReception_view.xml index 489f6a6750f24134e4174a56cb741b2ef2263cbe..3a9a6ca3e26c22834c8cb1524e33477164ddd17b 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReception_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookReception_view.xml @@ -80,7 +80,7 @@ <value> <dictionary> <item> - <key> <string>bottom</string> </key> + <key> <string>bottom</string> </key> <value> <list> <string>listbox</string> @@ -88,7 +88,7 @@ </value> </item> <item> - <key> <string>center</string> </key> + <key> <string>center</string> </key> <value> <list> <string>my_simulation_state</string> @@ -96,7 +96,7 @@ </value> </item> <item> - <key> <string>hidden</string> </key> + <key> <string>hidden</string> </key> <value> <list> <string>listbox_destination_section</string> @@ -104,7 +104,7 @@ </value> </item> <item> - <key> <string>left</string> </key> + <key> <string>left</string> </key> <value> <list> <string>my_source_reference</string> @@ -113,7 +113,7 @@ </value> </item> <item> - <key> <string>rigth</string> </key> + <key> <string>rigth</string> </key> <value> <list> <string>my_start_date</string> diff --git a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookRequestLine_view.xml b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookRequestLine_view.xml index 7aad078dbdd85e5cec217d73c40fd6f36651804d..7740bc9cc99d9494b1ed31b047c5c57ac7bc98cc 100644 --- a/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookRequestLine_view.xml +++ b/bt5/erp5_banking_check/SkinTemplateItem/portal_skins/erp5_banking_check_operation/CheckbookRequestLine_view.xml @@ -76,7 +76,7 @@ <value> <dictionary> <item> - <key> <string>Default</string> </key> + <key> <string>Default</string> </key> <value> <list> <string>my_resource_title</string>