* Adjust code.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
$config->screen->builtinScreen = array(6, 8, 13);
|
||||
$config->screen->builtinScreen = array(6, 8);
|
||||
$config->screen->builtinChart = array(10018, 10019, 10020, 10021, 10022, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, 10220);
|
||||
$config->screen->builtinPivot = array(1000, 1001, 1002);
|
||||
|
||||
|
||||
@@ -890,7 +890,7 @@ class screenModel extends model
|
||||
$component->option->value = $this->filter->month;
|
||||
|
||||
$options = array();
|
||||
for($month = 12; $month > 1; $month--) $options[] = array('label' => $month, 'value' => $month);
|
||||
for($month = 12; $month >= 1; $month--) $options[] = array('label' => $month, 'value' => $month);
|
||||
$component->option->dataset = $options;
|
||||
|
||||
$url = "createLink('screen', 'view', 'screenID=" . $this->filter->screen. "&year=" . $this->filter->year . "&month=' + value + '&dept=" . $this->filter->dept . "&account=" . $this->filter->account . "')";
|
||||
|
||||
Reference in New Issue
Block a user