* Finish task #3216.

This commit is contained in:
pengjiangxiu
2017-09-12 14:14:36 +08:00
parent 16f87e721d
commit 2cf53afceb
3 changed files with 19 additions and 11 deletions
+4 -4
View File
@@ -655,11 +655,11 @@ class productModel extends model
/**
* Get product stats.
*
* @param string $orderBy
* @param int $pager
*
* @param string $orderBy
* @param int $pager
* @access public
* @return array
* @return array
*/
public function getStats($orderBy = 'order_desc', $pager = null, $status = 'noclosed')
{
+5
View File
@@ -74,6 +74,11 @@ $config->story->datatable->fieldList['source']['fixed'] = 'no';
$config->story->datatable->fieldList['source']['width'] = '90';
$config->story->datatable->fieldList['source']['required'] = 'no';
$config->story->datatable->fieldList['sourceNote']['title'] = 'sourceNote';
$config->story->datatable->fieldList['sourceNote']['fixed'] = 'no';
$config->story->datatable->fieldList['sourceNote']['width'] = '90';
$config->story->datatable->fieldList['sourceNote']['required'] = 'no';
$config->story->datatable->fieldList['status']['title'] = 'statusAB';
$config->story->datatable->fieldList['status']['fixed'] = 'no';
$config->story->datatable->fieldList['status']['width'] = '80';
+10 -7
View File
@@ -2234,12 +2234,12 @@ class storyModel extends model
/**
* Print cell data
*
* @param object $col
* @param object $story
* @param array $users
* @param array $branches
* @param array $storyStages
*
* @param object $col
* @param object $story
* @param array $users
* @param array $branches
* @param array $storyStages
* @param array $modulePairs
* @param array $storyTasks
* @param array $storyBugs
@@ -2259,7 +2259,7 @@ class storyModel extends model
if($id == 'title') $class .= ' text-left';
if($id == 'assignedTo' && $story->assignedTo == $account) $class .= ' red';
$title = '';
$title = '';
if($id == 'title') $title = $story->title;
if($id == 'plan') $title = $story->planTitle;
@@ -2288,6 +2288,9 @@ class storyModel extends model
case 'source':
echo zget($this->lang->story->sourceList, $story->source, $story->source);
break;
case 'sourceNote':
echo $story->sourceNote;
break;
case 'status':
echo $this->lang->story->statusList[$story->status];
break;