PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
administrator
/
components
/
com_djcatalog2
/
tables
<?php /** * @version $Id: taxrules.php 272 2014-05-21 10:25:49Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 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 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 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 DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ // No direct access defined('_JEXEC') or die; class Djcatalog2TableTaxrules extends JTable { public function __construct(&$db) { parent::__construct('#__djc2_tax_rules', 'id', $db); } function bind($array, $ignore = '') { return parent::bind($array, $ignore); } public function store($updateNulls = false) { $date = JFactory::getDate(); $user = JFactory::getUser(); $app = JFactory::getApplication(); $db = JFactory::getDbo(); $id = (int)$this->id; $country_id = (int)$this->country_id; $tax_rate = (int)$this->tax_rate_id; $client = substr(strtoupper($this->client_type), 0, 1); $this->client_type = $client; $query = $db->getQuery(true); $where = array(); $query->select('count(*)'); $query->from('#__djc2_tax_rules'); if ($id) { $where[] = 'id != '.$id; } if ($country_id > 0) { $where[] = 'country_id='.$country_id; } $where[] = 'tax_rate_id='.$tax_rate; $query->where($where); $db->setQuery($query); $count = $db->loadResult(); if ($count > 0) { $this->setError(JText::_('COM_DJCATALOG2_ERROR_UNIQUE_TAX_RULE')); return false; } return parent::store($updateNulls); } }
[+]
..
[-] categories.php
[edit]
[-] countries.php
[edit]
[-] customergroups.php
[edit]
[-] customers.php
[edit]
[-] fieldgroups.php
[edit]
[-] fieldoptions.php
[edit]
[-] fields.php
[edit]
[-] fieldvalues.php
[edit]
[-] fieldvaluesdate.php
[edit]
[-] fieldvaluesint.php
[edit]
[-] fieldvaluestext.php
[edit]
[-] index.html
[edit]
[-] items.php
[edit]
[-] orders.php
[edit]
[-] producers.php
[edit]
[-] quotes.php
[edit]
[-] states.php
[edit]
[-] taxrates.php
[edit]
[-] taxrules.php
[edit]
[-] .htaccess.disabled
[edit]