| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- <?php
- /**
- * The model file of branch module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Yidong Wang <yidong@cnezsoft.com>
- * @package branch
- * @version $Id$
- * @link https://www.zentao.net
- */
- class branchModel extends model
- {
- /**
- * 通过分支ID获取分支信息。
- * Get name by id.
- *
- * @param string $branchID
- * @param int $productID
- * @param string $field
- * @access public
- * @return object|string|false
- */
- public function getByID($branchID, $productID = 0, $field = 'name')
- {
- if($branchID == 'all') return false;
- if(empty($branchID))
- {
- if(empty($productID)) $productID = (int)$this->session->product;
- $product = $this->loadModel('product')->getByID($productID);
- if(empty($product) || !isset($this->lang->product->branchName[$product->type])) return false;
- return $this->lang->branch->main;
- }
- $branch = $this->dao->select('*')->from(TABLE_BRANCH)->where('id')->eq($branchID)->fetch();
- if(!$branch) return false;
- return $field ? htmlspecialchars_decode($branch->{$field}) : $branch;
- }
- /**
- * 获取分支列表。
- * Get branch list.
- *
- * @param int $productID
- * @param int $executionID
- * @param string $browseType
- * @param string $orderBy
- * @param object $pager
- * @param bool $withMainBranch
- * @access public
- * @return array
- */
- public function getList($productID, $executionID = 0, $browseType = 'active', $orderBy = 'order', $pager = null, $withMainBranch = true)
- {
- if(common::isTutorialMode()) return $this->loadModel('tutorial')->getBranches();
- $product = $this->loadModel('product')->getById($productID);
- if(!$product) return array();
- $executionBranches = array();
- if($executionID)
- {
- $executionBranches = $this->branchTao->getIdListByRelation($productID, $executionID);
- if(empty($executionBranches)) return array();
- if(in_array(BRANCH_MAIN, $executionBranches)) $withMainBranch = true;
- }
- /* Get branch list. */
- $branchList = $this->dao->select('*')->from(TABLE_BRANCH)
- ->where('deleted')->eq(0)
- ->beginIF($productID)->andWhere('product')->eq($productID)->fi()
- ->beginIF($productID && $executionID)->andWhere('id')->in(array_keys($executionBranches))->fi()
- ->beginIF(!in_array($browseType, array('withClosed', 'all')))->andWhere('status')->eq($browseType)->fi()
- ->orderBy($orderBy)
- ->page($pager)
- ->fetchAll('id');
- if($browseType == 'closed') return $branchList;
- $defaultBranch = BRANCH_MAIN;
- foreach($branchList as $branch) $defaultBranch = $branch->default ? $branch->id : $defaultBranch;
- if(!$withMainBranch) return $branchList;
- /* Display the main branch under all and active page. */
- $mainBranch = new stdclass();
- $mainBranch->id = BRANCH_MAIN;
- $mainBranch->product = $productID;
- $mainBranch->name = $this->lang->branch->main;
- $mainBranch->default = $defaultBranch ? 0 : 1;
- $mainBranch->status = 'active';
- $mainBranch->createdDate = '';
- $mainBranch->closedDate = '';
- $mainBranch->desc = sprintf($this->lang->branch->mainBranch, $this->lang->product->branchName[$product->type]);
- $mainBranch->order = 0;
- return array($mainBranch) + $branchList;
- }
- /**
- * 根据产品ID获取分支状态信息。
- * Get branch status information based on product ID.
- *
- * @param int $productID
- * @access public
- * @return array
- */
- public function getStatusList($productID)
- {
- return $this->dao->select('id,status')->from(TABLE_BRANCH)->where('product')->eq($productID)->fetchPairs();
- }
- /**
- * 根据产品ID获取分支列表键值对。
- * Get branch pairs by product id.
- *
- * @param int $productID
- * @param string $params active|noempty|all|withClosed
- * @param int $executionID
- * @param string $mergedBranches
- * @access public
- * @return array
- */
- public function getPairs($productID, $params = '', $executionID = 0, $mergedBranches = '')
- {
- if(common::isTutorialMode()) return $this->loadModel('tutorial')->getBranchPairs();
- $executionBranches = array();
- if($executionID)
- {
- $executionBranches = $this->branchTao->getIdListByRelation($productID, $executionID);
- if(empty($executionBranches)) return array();
- }
- $branches = $this->dao->select('id, name')->from(TABLE_BRANCH)
- ->where('deleted')->eq(0)
- ->beginIF($productID)->andWhere('product')->eq($productID)->fi()
- ->beginIF($productID && $executionID)->andWhere('id')->in(array_keys($executionBranches))->fi()
- ->beginIF(strpos($params, 'active') !== false)->andWhere('status')->eq('active')->fi()
- ->beginIF(!empty($mergedBranches))->andWhere('id')->notIN($mergedBranches)->fi()
- ->orderBy('`order`')
- ->fetchPairs('id', 'name');
- foreach($branches as $branchID => $branchName) $branches[$branchID] = htmlspecialchars_decode($branchName);
- if($executionID)
- {
- $branches = array('all' => $this->lang->branch->all, '0' => $this->lang->branch->main) + $branches;
- return $branches;
- }
- if(strpos($params, 'noempty') === false)
- {
- $product = $this->loadModel('product')->getById($productID);
- if(($productID && !$product) || ($product && $product->type == 'normal')) return array();
- $branches = array(BRANCH_MAIN => $this->lang->branch->main) + $branches;
- }
- if(strpos($params, 'all') !== false)
- {
- $branches = array('all' => $this->lang->branch->all) + $branches;
- }
- if(strpos($params, 'withClosed') !== false)
- {
- $closedBranches = $this->dao->select('id')->from(TABLE_BRANCH)->where('product')->eq($productID)->andWhere('status')->eq('closed')->fetchPairs();
- if(!empty($closedBranches))
- {
- foreach($closedBranches as $closedBranch) $branches[$closedBranch] .= ' (' . $this->lang->branch->statusList['closed'] . ')';
- }
- }
- return $branches;
- }
- /**
- * 通过分支ID列表获取分支名称列表。
- * Get the list of branch name from the branch ID list.
- *
- * @param array $branchIdList
- * @access public
- * @return array
- */
- public function getPairsByIdList($branchIdList)
- {
- return $this->dao->select('id,name')->from(TABLE_BRANCH)->where('id')->in($branchIdList)->fetchPairs();
- }
- /**
- * 获取系统内所有分支id:name的键值对。
- * Get the key-value pairs of id:name for all branches in the system.
- *
- * @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] = htmlspecialchars_decode($branch->name);
- if(strpos($params, 'noproductname') === false) $branchPairs[$branch->id] = $product->name . '/' . $branchPairs[$branch->id];
- }
- }
- if(strpos($params, 'noempty') === false) $branchPairs = array('0' => $this->lang->branch->main) + $branchPairs;
- return $branchPairs;
- }
- /**
- * Create a branch.
- *
- * @param int $productID
- * @param object $branch
- * @access public
- * @return int|false
- */
- public function create($productID, $branch)
- {
- $this->app->loadLang('product');
- $productType = $this->dao->select('`type`')->from(TABLE_PRODUCT)->where('id')->eq($productID)->fetch('type');
- $this->lang->error->unique = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->existName);
- $lastOrder = (int)$this->dao->select('`order`')->from(TABLE_BRANCH)->where('product')->eq($productID)->orderBy('order_desc')->limit(1)->fetch('order');
- $branch->order = $lastOrder + 1;
- $branch->product = $productID;
- $this->dao->insert(TABLE_BRANCH)->data($branch)
- ->batchCheck($this->config->branch->create->requiredFields, 'notempty')
- ->checkIF(!empty($branch->name), 'name', 'unique', "product = $productID")
- ->autoCheck()
- ->exec();
- if(dao::isError()) return false;
- return $this->dao->lastInsertID();
- }
- /**
- * 更新一个分支。
- * Update a branch.
- *
- * @param int $branchID
- * @param object $branch
- * @access public
- * @return array|false
- */
- public function update($branchID, $branch)
- {
- $oldBranch = $this->getById((string)$branchID, 0, '');
- $productType = $this->getProductType($branchID);
- if(!$productType) $productType = 'branch';
- $this->app->loadLang('product');
- $this->lang->error->unique = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->existName);
- $branch->closedDate = $branch->status == 'closed' ? helper::now() : null;
- $this->dao->update(TABLE_BRANCH)->data($branch)
- ->where('id')->eq($branchID)
- ->batchCheck($this->config->branch->edit->requiredFields, 'notempty')
- ->checkIF(!empty($branch->name) && $branch->name != $oldBranch->name, 'name', 'unique', "product = $oldBranch->product && id != $oldBranch->id")
- ->autoCheck()
- ->exec();
- if(dao::isError()) return false;
- $changes = common::createChanges($oldBranch, $branch);
- if($changes) $this->loadModel('action')->create('branch', $branchID, 'Edited');
- return $changes;
- }
- /**
- * 批量更新分支。
- * Batch update branch.
- *
- * @param int $productID
- * @param array $productID
- * @access public
- * @return array|false
- * @param mixed[] $branches
- */
- public function batchUpdate($productID, $branches)
- {
- $this->app->loadLang('product');
- $productType = $this->dao->select('`type`')->from(TABLE_PRODUCT)->where('id')->eq($productID)->fetch('type');
- $this->lang->error->unique = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->existName);
- $changes = array();
- $oldBranchList = $this->getList($productID, 0, 'all');
- foreach($branches as $index => $branch)
- {
- $branchID = $branch->branchID;
- if($branch->branchID == BRANCH_MAIN) continue;
- $newBranch = new stdclass();
- $newBranch->name = $branch->name;
- $newBranch->desc = $branch->desc;
- $newBranch->status = $branch->status;
- $newBranch->closedDate = $branch->status == 'closed' ? helper::now() : null;
- $this->dao->update(TABLE_BRANCH)->data($newBranch)
- ->batchCheck($this->config->branch->create->requiredFields, 'notempty')
- ->checkIF(!empty($branch->name) && $branch->name != $oldBranchList[$branchID]->name, 'name', 'unique', "product = $productID")
- ->where('id')->eq($branchID)
- ->exec();
- if(dao::isError())
- {
- dao::$errors["name[$index]"] = dao::getError(true);
- return false;
- }
- $changes[$branchID] = common::createChanges($oldBranchList[$branchID], $branch);
- }
- if(dao::isError()) return false;
- return $changes;
- }
- /**
- * 关闭一个分支。
- * Close a branch.
- *
- * @param int $branchID
- * @access public
- * @return bool
- */
- public function close($branchID)
- {
- $this->dao->update(TABLE_BRANCH)
- ->set('status')->eq('closed')
- ->set('closedDate')->eq(helper::now())
- ->set('`default`')->eq('0')
- ->where('id')->eq($branchID)
- ->exec();
- return !dao::isError();
- }
- /**
- * 激活一个分支。
- * Activate a branch.
- *
- * @param int $branchID
- * @access public
- * @return bool
- */
- public function activate($branchID)
- {
- $this->dao->update(TABLE_BRANCH)
- ->set('status')->eq('active')
- ->set('closedDate')->eq(null)
- ->where('id')->eq($branchID)
- ->exec();
- return !dao::isError();
- }
- /**
- * Manage branch.
- *
- * @param int $productID
- * @access public
- * @return bool|array
- */
- 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(!$branch) return print(js::alert($this->lang->branch->nameNotEmpty));
- if(isset($oldBranches[$branchID]) && $oldBranches[$branchID] != $branch) $this->dao->update(TABLE_BRANCH)->set('name')->eq($branch)->where('id')->eq($branchID)->exec();
- }
- }
- $branches = array();
- 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();
- $branches[] = $this->dao->lastInsertId();
- }
- if(dao::isError()) return false;
- return $branches;
- }
- /**
- * 将产品改为正常类型时,解除分支与项目的关联。
- * Unlink branches for projects when product type is normal.
- *
- * @param array $productIDList
- * @access public
- * @return bool
- */
- public function unlinkBranch4Project($productIDList)
- {
- $productLinkedProject = $this->dao->select('*')->from(TABLE_PROJECTPRODUCT)
- ->where('product')->in($productIDList)
- ->andWhere('branch')->gt(0)
- ->fetchGroup('product', 'project');
- $this->dao->delete()->from(TABLE_PROJECTPRODUCT)
- ->where('product')->in($productIDList)
- ->andWhere('branch')->gt(0)
- ->exec();
- foreach($productLinkedProject as $productID => $projectList)
- {
- foreach($projectList as $projectID => $project)
- {
- $data = new stdClass();
- $data->product = $productID;
- $data->project = $projectID;
- $data->branch = 0;
- $data->plan = 0;
- $this->dao->replace(TABLE_PROJECTPRODUCT)->data($data)->exec();
- }
- }
- return !dao::isError();
- }
- /**
- * 产品改为多分支类型时,处理分支关联项目。
- * Link branches for projects when product type is not normal.
- *
- * @param int|array $productID
- * @access public
- * @return void
- */
- public function linkBranch4Project($productID)
- {
- if(is_array($productID))
- {
- foreach($productID as $id) $this->linkBranch4Project($id);
- return;
- }
- /* Get the branch of story, bug and case linked the project and execution. */
- $linkedBranchProject = array();
- $objectList = array('projectstory', 'bug', 'case');
- foreach($objectList as $objectType)
- {
- $table = $this->config->objectTables[$objectType];
- $linkedBranchProject = $this->dao->select('project,branch')->from($table)
- ->where('product')->eq($productID)
- ->andWhere('branch')->gt(0)
- ->beginIF($objectType != 'projectstory')->andWhere('project')->ne('0')->fi()
- ->fetchGroup('project', 'branch');
- foreach($linkedBranchProject as $projectID => $branchList)
- {
- foreach($branchList as $branchID => $branch) $linkedBranchProject[$projectID][$branchID] = $branchID;
- }
- if($objectType == 'projectstory') continue;
- $linkedBranchExecution = $this->dao->select('execution,branch')->from($table)
- ->where('product')->eq($productID)
- ->andWhere('branch')->gt(0)
- ->andWhere('execution')->ne(0)
- ->fetchGroup('execution', 'branch');
- foreach($linkedBranchExecution as $executionID => $branchList)
- {
- foreach($branchList as $branchID => $branch) $linkedBranchProject[$executionID][$branchID] = $branchID;
- }
- }
- foreach($linkedBranchProject as $projectID => $branchList)
- {
- foreach($branchList as $branchID)
- {
- $data = new stdClass();
- $data->product = $productID;
- $data->project = $projectID;
- $data->branch = $branchID;
- $data->plan = 0;
- $this->dao->replace(TABLE_PROJECTPRODUCT)->data($data)->exec();
- }
- }
- }
- /**
- * 按照产品分组获取分支数据。
- * Get branch group by products
- *
- * @param array $productIdList
- * @param string $params ignoreNormal|noempty|noclosed
- * @param array $appendBranch
- * @access public
- * @return array
- */
- public function getByProducts($productIdList, $params = '', $appendBranch = array())
- {
- $branches = $this->dao->select('*')->from(TABLE_BRANCH)
- ->where('product')->in($productIdList)
- ->andWhere('deleted')->eq(0)
- ->beginIF(strpos($params, 'noclosed') !== false)->andWhere('status')->eq('active')->fi()
- ->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($productIdList);
- $branchGroups = array();
- foreach($branches as $branch)
- {
- if(!isset($products[$branch->product]->type)) continue;
- if($products[$branch->product]->type == 'normal')
- {
- if(strpos($params, 'ignoreNormal') === false) $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->main) + $branchGroups[$product->id];
- }
- return $branchGroups;
- }
- /**
- * 根据分支ID获取产品类型。
- * Get product type by branch ID.
- *
- * @param int $branchID
- * @access public
- * @return string|false
- */
- 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.
- *
- * @param array $branchOrderList
- * @access public
- * @return bool
- */
- public function sort($branchOrderList)
- {
- $branchIdList = array_keys($branchOrderList);
- $branches = $this->dao->select('id,`order`')->from(TABLE_BRANCH)->where('id')->in($branchIdList)->orderBy('order_asc')->fetchPairs('order', 'id');
- foreach($branches as $order => $id)
- {
- $newID = array_shift($branchIdList);
- if($id == $newID) continue;
- $this->dao->update(TABLE_BRANCH)->set('`order`')->eq($order)->where('id')->eq($newID)->exec();
- }
- return !dao::isError();
- }
- /**
- * 检查分支数据。
- * Check branch data.
- *
- * @param int $branchID
- * @access public
- * @return bool
- */
- public function checkBranchData($branchID)
- {
- $modules = array('module', 'story', 'productplan', 'bug', 'case', 'release', 'build');
- foreach($modules as $module)
- {
- $firstData = $this->dao->select('id')->from($this->config->objectTables[$module])
- ->where('branch')->eq($branchID)
- ->andWhere('deleted')->eq(0)
- ->fetch();
- if($firstData) return false;
- }
- $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($project);
- }
- /**
- * 设置默认分支。
- * Set default branch.
- *
- * @param int $productID
- * @param int $branchID
- * @accesss public
- * @return bool
- */
- public function setDefault($productID, $branchID)
- {
- $this->dao->update(TABLE_BRANCH)->set('`default`')->eq('0')
- ->where('product')->eq($productID)
- ->exec();
- if($branchID) $this->dao->update(TABLE_BRANCH)->set('`default`')->eq('1')->where('id')->eq($branchID)->exec();
- return !dao::isError();
- }
- /**
- * 获取关联到项目的产品分支。
- * Get branches of product which linked project.
- *
- * @param int $projectID
- * @param int $productID
- * @access public
- * @return array
- */
- public function getPairsByProjectProduct($projectID, $productID)
- {
- $branches = $this->dao->select('branch,t2.name')->from(TABLE_PROJECTPRODUCT)->alias('t1')
- ->leftJoin(TABLE_BRANCH)->alias('t2')->on('t1.branch=t2.id')
- ->where('t1.project')->eq($projectID)
- ->andWhere('t1.product')->eq($productID)
- ->andWhere('t2.deleted')->eq('0')
- ->fetchPairs('branch', 'name');
- $projectProduct = $this->branchTao->getIdListByRelation($productID, $projectID);
- if(isset($projectProduct[BRANCH_MAIN])) $branches = array(BRANCH_MAIN => $this->lang->branch->main) + $branches;
- return $branches;
- }
- /**
- * 判断是否展示分支标签。
- * Display of branch label.
- *
- * @param int $productID
- * @param int $moduleID
- * @param int $executionID
- * @access public
- * @return bool
- */
- public function showBranch($productID, $moduleID = 0, $executionID = 0)
- {
- $this->loadModel('product');
- if(!$productID)
- {
- if($moduleID)
- {
- $module = $this->loadModel('tree')->getByID($moduleID);
- if($module && $module->type != 'task') $productID = $module->root;
- }
- else if($executionID && $this->app->tab != 'project')
- {
- $productPairs = $this->product->getProductPairsByProject($executionID);
- if(count($productPairs) == 1) $productID = key($productPairs);
- }
- }
- if(!$productID) return false;
- $product = $this->product->getByID($productID);
- if(!$product || $product->type == 'normal') return false;
- $this->app->loadLang('datatable');
- $this->lang->datatable->showBranch = sprintf($this->lang->datatable->showBranch, $this->lang->product->branchName[$product->type]);
- return true;
- }
- /**
- * 设置分支/平台名称。
- * Set branch/platform name.
- *
- * @param int $productID
- * @access public
- * @return bool
- */
- public function changeBranchLanguage($productID)
- {
- $product = $this->loadModel('product')->getByID($productID);
- if(!$product || $product->type == 'normal') return false;
- $productType = $product->type;
- $this->lang->branch->create = sprintf($this->lang->branch->create, $this->lang->product->branchName[$productType]);
- $this->lang->branch->edit = sprintf($this->lang->branch->edit, $this->lang->product->branchName[$productType]);
- $this->lang->branch->name = sprintf($this->lang->branch->name, $this->lang->product->branchName[$productType]);
- $this->lang->branch->desc = sprintf($this->lang->branch->desc, $this->lang->product->branchName[$productType]);
- $this->lang->branch->manageTitle = sprintf($this->lang->branch->manageTitle, $this->lang->product->branchName[$productType]);
- $this->lang->branch->mainBranch = sprintf($this->lang->branch->mainBranch, $this->lang->product->branchName[$productType]);
- $this->lang->branch->mergeTo = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->mergeTo);
- $this->lang->branch->mergeBranch = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->mergeBranch);
- $this->lang->branch->confirmDelete = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->confirmDelete);
- $this->lang->branch->confirmSetDefault = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->confirmSetDefault);
- $this->lang->branch->canNotDelete = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->canNotDelete);
- $this->lang->branch->confirmClose = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->confirmClose);
- $this->lang->branch->confirmActivate = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->confirmActivate);
- $this->lang->branch->existName = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->existName);
- $this->lang->branch->mergeTips = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->mergeTips);
- $this->lang->branch->targetBranchTips = str_replace('@branch@', $this->lang->product->branchName[$productType], $this->lang->branch->targetBranchTips);
- return true;
- }
- /**
- * 将多个分支合并到一个分支。
- * Merge multiple branches into one branch.
- *
- * @param int $productID
- * @param string $mergedBranches
- * @param object $data
- * @access public
- * @return int|bool
- */
- public function mergeBranch($productID, $mergedBranches, $data)
- {
- if($data->createBranch && empty($data->name))
- {
- $this->changeBranchLanguage($productID);
- dao::$errors['name'] = sprintf($this->lang->error->notempty, $this->lang->branch->name);
- return false;
- }
- /* Get the target branch. */
- if($data->createBranch)
- {
- $branch = new stdclass();
- foreach($this->config->branch->form->create as $field => $setting) $branch->$field = $data->$field;
- $targetBranch = $this->create($productID, $branch);
- if(dao::isError()) return false;
- $this->loadModel('action')->create('branch', $targetBranch, 'Opened');
- }
- else
- {
- $targetBranch = $data->targetBranch;
- }
- /* Branch. */
- $this->dao->delete()->from(TABLE_BRANCH)->where('id')->in($mergedBranches)->exec();
- $this->branchTao->afterMerge($productID, $targetBranch, $mergedBranches, $data);
- if(dao::isError()) return false;
- return $targetBranch;
- }
- /**
- * 获取分支的可操作动作。
- * Judge an action is clickable or not.
- *
- * @param object $branch
- * @param string $action
- * @static
- * @access public
- * @return bool
- */
- public static function isClickable($branch, $action)
- {
- if(empty($branch->id)) return false;
- if($branch->status == 'active' && $action == 'activate') return false;
- if($branch->status == 'closed' && $action == 'close') return false;
- return true;
- }
- }
|