Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

朱继来 / 后台订单管理

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
Normal viewHistoryPermalink
Switch branch/tag
  • Order
  • ..
  • Calculation
  • Function.php
Function.php 4.04 KB
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
1
<?php
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
2

叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
3
/**
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
4
 * PHPExcel_Calculation_Function
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
5
 *
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
6
 * Copyright (c) 2006 - 2015 PHPExcel
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @category   PHPExcel
 * @package    PHPExcel_Calculation
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
24 25
 * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
26 27
 * @version    ##VERSION##, ##DATE##
 */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
28 29 30 31 32 33 34 35 36 37 38 39 40 41
class PHPExcel_Calculation_Function
{
    /* Function categories */
    const CATEGORY_CUBE                 = 'Cube';
    const CATEGORY_DATABASE             = 'Database';
    const CATEGORY_DATE_AND_TIME        = 'Date and Time';
    const CATEGORY_ENGINEERING          = 'Engineering';
    const CATEGORY_FINANCIAL            = 'Financial';
    const CATEGORY_INFORMATION          = 'Information';
    const CATEGORY_LOGICAL              = 'Logical';
    const CATEGORY_LOOKUP_AND_REFERENCE = 'Lookup and Reference';
    const CATEGORY_MATH_AND_TRIG        = 'Math and Trig';
    const CATEGORY_STATISTICAL          = 'Statistical';
    const CATEGORY_TEXT_AND_DATA        = 'Text and Data';
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
42

朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
43 44 45 46 47 48
    /**
     * Category (represented by CATEGORY_*)
     *
     * @var string
     */
    private $category;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
49

朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
50 51 52 53 54 55
    /**
     * Excel name
     *
     * @var string
     */
    private $excelName;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
56

朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
57 58 59 60 61 62
    /**
     * PHPExcel name
     *
     * @var string
     */
    private $phpExcelName;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
63 64 65 66

    /**
     * Create a new PHPExcel_Calculation_Function
     *
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
67 68 69 70
     * @param     string        $pCategory         Category (represented by CATEGORY_*)
     * @param     string        $pExcelName        Excel function name
     * @param     string        $pPHPExcelName    PHPExcel function mapping
     * @throws     PHPExcel_Calculation_Exception
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
71
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
72
    public function __construct($pCategory = null, $pExcelName = null, $pPHPExcelName = null)
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
73
    {
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
74 75 76 77 78 79 80 81
        if (($pCategory !== null) && ($pExcelName !== null) && ($pPHPExcelName !== null)) {
            // Initialise values
            $this->category     = $pCategory;
            $this->excelName    = $pExcelName;
            $this->phpExcelName = $pPHPExcelName;
        } else {
            throw new PHPExcel_Calculation_Exception("Invalid parameters passed.");
        }
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
82 83 84 85 86 87 88
    }

    /**
     * Get Category (represented by CATEGORY_*)
     *
     * @return string
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
89 90 91
    public function getCategory()
    {
        return $this->category;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
92 93 94 95 96
    }

    /**
     * Set Category (represented by CATEGORY_*)
     *
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
97 98
     * @param     string        $value
     * @throws     PHPExcel_Calculation_Exception
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
99
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
100 101 102 103 104 105 106
    public function setCategory($value = null)
    {
        if (!is_null($value)) {
            $this->category = $value;
        } else {
            throw new PHPExcel_Calculation_Exception("Invalid parameter passed.");
        }
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
107 108 109 110 111 112 113
    }

    /**
     * Get Excel name
     *
     * @return string
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
114 115 116
    public function getExcelName()
    {
        return $this->excelName;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
117 118 119 120 121
    }

    /**
     * Set Excel name
     *
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
122
     * @param string    $value
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
123
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
124 125 126
    public function setExcelName($value)
    {
        $this->excelName = $value;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
127 128 129 130 131 132 133
    }

    /**
     * Get PHPExcel name
     *
     * @return string
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
134 135 136
    public function getPHPExcelName()
    {
        return $this->phpExcelName;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
137 138 139 140 141
    }

    /**
     * Set PHPExcel name
     *
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
142
     * @param string    $value
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
143
     */
朱继来's avatar
1. 调整明细编辑;
0b4e495b
 
朱继来 committed 5 years ago
144 145 146
    public function setPHPExcelName($value)
    {
        $this->phpExcelName = $value;
叶明星's avatar
账期管理
d99f4f05
 
叶明星 committed 6 years ago
147 148
    }
}