209 lines
7.8 KiB
PHP
209 lines
7.8 KiB
PHP
<?php
|
|
/**
|
|
* The model file of branch module of ZenTaoCMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Yidong Wang <yidong@cnezsoft.com>
|
|
* @package branch
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class branchModel extends model
|
|
{
|
|
/**
|
|
* Get name by id.
|
|
*
|
|
* @param int $branchID
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function getById($branchID, $productID = 0)
|
|
{
|
|
if(empty($branchID))
|
|
{
|
|
if(empty($productID)) $productID = $this->session->product;
|
|
$product = $this->loadModel('product')->getById($productID);
|
|
if(empty($product) or !isset($this->lang->product->branchName[$product->type])) return false;
|
|
return $this->lang->branch->all . $this->lang->product->branchName[$product->type];
|
|
}
|
|
return htmlspecialchars_decode($this->dao->select('*')->from(TABLE_BRANCH)->where('id')->eq($branchID)->fetch('name'));
|
|
}
|
|
|
|
/**
|
|
* Get pairs.
|
|
*
|
|
* @param int $productID
|
|
* @param string $params
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getPairs($productID, $params = '')
|
|
{
|
|
$branches = $this->dao->select('*')->from(TABLE_BRANCH)->where('product')->eq($productID)->andWhere('deleted')->eq(0)->orderBy('`order`')->fetchPairs('id', 'name');
|
|
foreach($branches as $branchID => $branchName) $branches[$branchID] = htmlspecialchars_decode($branchName);
|
|
|
|
if(strpos($params, 'noempty') === false)
|
|
{
|
|
$product = $this->loadModel('product')->getById($productID);
|
|
if(!$product or $product->type == 'normal') return array();
|
|
|
|
$branches = array('0' => $this->lang->branch->all . $this->lang->product->branchName[$product->type]) + $branches;
|
|
}
|
|
return $branches;
|
|
}
|
|
|
|
/**
|
|
* Get all pairs.
|
|
*
|
|
* @param string $params
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getAllPairs($params = '')
|
|
{
|
|
$branchGroups = $this->dao->select('*')->from(TABLE_BRANCH)->where('deleted')->eq(0)->orderBy('product,`order`')->fetchGroup('product', 'id');
|
|
$products = $this->loadModel('product')->getByIdList(array_keys($branchGroups));
|
|
|
|
$branchPairs = array();
|
|
foreach($branchGroups as $productID => $branches)
|
|
{
|
|
if(empty($products[$productID])) continue;
|
|
|
|
$product = $products[$productID];
|
|
foreach($branches as $branch)
|
|
{
|
|
$branchPairs[$branch->id] = $product->name . '/' . htmlspecialchars_decode($branch->name);
|
|
}
|
|
}
|
|
|
|
if(strpos($params, 'noempty') === false)
|
|
{
|
|
$branchPairs = array('0' => $this->lang->branch->all . $this->lang->product->branchName['branch']) + $branchPairs;
|
|
}
|
|
return $branchPairs;
|
|
}
|
|
|
|
/**
|
|
* Manage branch
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return bool
|
|
*/
|
|
public function manage($productID)
|
|
{
|
|
$oldBranches = $this->getPairs($productID, 'noempty');
|
|
$data = fixer::input('post')->get();
|
|
if(isset($data->branch))
|
|
{
|
|
foreach($data->branch as $branchID => $branch)
|
|
{
|
|
if($oldBranches[$branchID] != $branch) $this->dao->update(TABLE_BRANCH)->set('name')->eq($branch)->where('id')->eq($branchID)->exec();
|
|
}
|
|
}
|
|
foreach($data->newbranch as $i => $branch)
|
|
{
|
|
if(empty($branch)) continue;
|
|
$this->dao->insert(TABLE_BRANCH)->set('name')->eq($branch)->set('product')->eq($productID)->set('`order`')->eq(count($data->branch) + $i + 1)->exec();
|
|
}
|
|
|
|
return dao::isError();
|
|
}
|
|
|
|
/**
|
|
* Get branch group by products
|
|
*
|
|
* @param array $products
|
|
* @param string $params
|
|
* @param array $appendBranch
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getByProducts($products, $params = '', $appendBranch = '')
|
|
{
|
|
$branches = $this->dao->select('*')->from(TABLE_BRANCH)->where('product')->in($products)->andWhere('deleted')->eq(0)->orderBy('`order`')->fetchAll('id');
|
|
if(!empty($appendBranch)) $branches += $this->dao->select('*')->from(TABLE_BRANCH)->where('id')->in($appendBranch)->orderBy('`order`')->fetchAll('id');
|
|
$products = $this->loadModel('product')->getByIdList($products);
|
|
|
|
$branchGroups = array();
|
|
foreach($branches as $branch)
|
|
{
|
|
if($products[$branch->product]->type == 'normal')
|
|
{
|
|
$branchGroups[$branch->product][0] = '';
|
|
}
|
|
else
|
|
{
|
|
$branchGroups[$branch->product][$branch->id] = htmlspecialchars_decode($branch->name);
|
|
}
|
|
}
|
|
|
|
foreach($products as $product)
|
|
{
|
|
if($product->type == 'normal') continue;
|
|
|
|
if(!isset($branchGroups[$product->id])) $branchGroups[$product->id] = array();
|
|
if(strpos($params, 'noempty') === false) $branchGroups[$product->id] = array('0' => $this->lang->branch->all . $this->lang->product->branchName[$product->type]) + $branchGroups[$product->id];
|
|
}
|
|
|
|
return $branchGroups;
|
|
}
|
|
|
|
/**
|
|
* Get product bype by branch.
|
|
*
|
|
* @param int $branchID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function getProductType($branchID)
|
|
{
|
|
return $this->dao->select('t2.type')->from(TABLE_BRANCH)->alias('t1')
|
|
->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product=t2.id')
|
|
->where('t1.id')->eq($branchID)
|
|
->fetch('type');
|
|
}
|
|
|
|
/**
|
|
* Sort branch.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function sort()
|
|
{
|
|
$data = fixer::input('post')->get();
|
|
$branches = trim($data->branches, ',');
|
|
foreach(explode(',', $branches) as $order => $branchID)
|
|
{
|
|
$this->dao->update(TABLE_BRANCH)->set('`order`')->eq($order)->where('id')->eq($branchID)->exec();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check branch data.
|
|
*
|
|
* @param int $branchID
|
|
* @access public
|
|
* @return bool
|
|
*/
|
|
public function checkBranchData($branchID)
|
|
{
|
|
$module = $this->dao->select('id')->from(TABLE_MODULE)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$story = $this->dao->select('id')->from(TABLE_STORY)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$plan = $this->dao->select('id')->from(TABLE_PRODUCTPLAN)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$bug = $this->dao->select('id')->from(TABLE_BUG)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$case = $this->dao->select('id')->from(TABLE_CASE)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$release = $this->dao->select('id')->from(TABLE_RELEASE)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$build = $this->dao->select('id')->from(TABLE_BUILD)->where('branch')->eq($branchID)->andWhere('deleted')->eq(0)->limit(1)->fetch();
|
|
$project = $this->dao->select('t1.id')->from(TABLE_PROJECT)->alias('t1')
|
|
->leftJoin(TABLE_PROJECTPRODUCT)->alias('t2')->on('t1.id=t2.project')
|
|
->where('t2.branch')->eq($branchID)
|
|
->andWhere('t1.deleted')->eq(0)
|
|
->limit(1)
|
|
->fetch();
|
|
return empty($module) && empty($story) && empty($bug) && empty($case) && empty($release) && empty($build) && empty($plan) && empty($project);
|
|
}
|
|
}
|