* Adjust code.

This commit is contained in:
zhouxin
2023-11-13 03:08:22 +08:00
parent d026372403
commit 3e1361ecd1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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 . "')";