[-] BO : BugFix : #PSCFV-2209 : Multishop : cannot delete shops with dependencies

This commit is contained in:
vChabot
2012-05-10 14:09:11 +00:00
parent e2f4caa66f
commit 5a96ffbd64
3 changed files with 35 additions and 1 deletions
@@ -0,0 +1,33 @@
{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 9197 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<a href="{$href}" class="delete"
{if in_array($id_shop, $shops_having_dependencies)}
onclick="jAlert('{l s='You cannot delete this shop (customer and/or order dependency)'}'); return false;"
{elseif isset($confirm)}
onclick="if (confirm('{$confirm}')){ return true; }else{ event.stopPropagation(); event.preventDefault();};"
{/if} title="{$action}">
<img src="../img/admin/delete.gif" alt="{$action}" />
</a>
+1
View File
@@ -456,6 +456,7 @@ class HelperListCore extends Helper
$name = '\n\n'.self::$cache_lang['Name'].' '.$name;
$data = array(
$this->identifier => $id,
'href' => Tools::safeOutput($this->currentIndex.'&'.$this->identifier.'='.$id.'&delete'.$this->table.'&token='.($token != null ? $token : $this->token)),
'action' => self::$cache_lang['Delete'],
);
+1 -1
View File
@@ -275,7 +275,7 @@ class AdminShopControllerCore extends AdminController
if (Shop::hasDependency($shop['id_shop']))
$shop_delete_list[] = $shop['id_shop'];
}
$this->addRowActionSkipList('delete', $shop_delete_list);
$this->context->smarty->assign('shops_having_dependencies', $shop_delete_list);
}
public function renderForm()