【实例简介】PHP的开源商用进销存系统PSI
PSI是开源的已经商用的ThinkPhp extjs结构开发的企业进销存系统,有完整的代码和丰富的文档,可用于中小企业的进销存管理。要详细了解可以访问https://www.oschina.net/p/psi-crm ,咨询可加群414474186.
【实例截图】
【核心代码】
.
├── PHP的开源商用进销存系统PSI_crm8000-PSI-master.zip
└── PSI
├── Mobile_Detect.php
├── README.md
├── doc
│ ├── 01 概要设计
│ │ ├── PSI.pptx
│ │ └── PSI概要设计.xlsx
│ ├── 02 表结构
│ │ └── 表结构说明.xlsx
│ ├── 03 使用手册
│ │ └── PSI使用手册.docx
│ ├── 10 众包
│ │ ├── 01 任务台账
│ │ │ └── 任务台账.xlsx
│ │ └── 02 任务单
│ │ ├── 20151019-01.xlsx
│ │ ├── 20151028-01.xlsx
│ │ ├── 20151104-01.xlsx
│ │ ├── 20151104-02.xlsx
│ │ ├── 20151110-01.xlsx
│ │ ├── 20151115-01.xlsx
│ │ └── 20160620-01.xlsx
│ ├── 98 编码规范
│ │ └── PSI_编码风格_Ecllipse.xml
│ └── 99 SQL
│ ├── 01CreateTables.sql
│ ├── 02InsertInitData.sql
│ └── 99psi_demo_data.sql
├── index.php
├── license
│ ├── LICENSE_ApacheLicenseV2
│ ├── LICENSE_GPLv3
│ ├── LICENSE_LGPL.txt
│ └── LICENSE_MIT.txt
└── web
├── Application
│ ├── API
│ │ ├── Service
│ │ │ └── BaseService.class.php
│ │ └── index.html
│ ├── Common
│ │ ├── Common
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── Home
│ │ ├── Common
│ │ │ ├── DemoConst.class.php
│ │ │ ├── Excel
│ │ │ │ ├── PHPExcel
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── CachedObjectStorage
│ │ │ │ │ │ ├── APC.php
│ │ │ │ │ │ ├── CacheBase.php
│ │ │ │ │ │ ├── DiscISAM.php
│ │ │ │ │ │ ├── ICache.php
│ │ │ │ │ │ ├── Igbinary.php
│ │ │ │ │ │ ├── Memcache.php
│ │ │ │ │ │ ├── Memory.php
│ │ │ │ │ │ ├── MemoryGZip.php
│ │ │ │ │ │ ├── MemorySerialized.php
│ │ │ │ │ │ ├── PHPTemp.php
│ │ │ │ │ │ ├── SQLite.php
│ │ │ │ │ │ ├── SQLite3.php
│ │ │ │ │ │ └── Wincache.php
│ │ │ │ │ ├── CachedObjectStorageFactory.php
│ │ │ │ │ ├── CalcEngine
│ │ │ │ │ │ ├── CyclicReferenceStack.php
│ │ │ │ │ │ └── Logger.php
│ │ │ │ │ ├── Calculation
│ │ │ │ │ │ ├── Database.php
│ │ │ │ │ │ ├── DateTime.php
│ │ │ │ │ │ ├── Engineering.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── ExceptionHandler.php
│ │ │ │ │ │ ├── Financial.php
│ │ │ │ │ │ ├── FormulaParser.php
│ │ │ │ │ │ ├── FormulaToken.php
│ │ │ │ │ │ ├── Function.php
│ │ │ │ │ │ ├── Functions.php
│ │ │ │ │ │ ├── Logical.php
│ │ │ │ │ │ ├── LookupRef.php
│ │ │ │ │ │ ├── MathTrig.php
│ │ │ │ │ │ ├── Statistical.php
│ │ │ │ │ │ ├── TextData.php
│ │ │ │ │ │ ├── Token
│ │ │ │ │ │ │ └── Stack.php
│ │ │ │ │ │ └── functionlist.txt
│ │ │ │ │ ├── Calculation.php
│ │ │ │ │ ├── Cell
│ │ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ │ ├── DataType.php
│ │ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ │ └── IValueBinder.php
│ │ │ │ │ ├── Cell.php
│ │ │ │ │ ├── Chart
│ │ │ │ │ │ ├── Axis.php
│ │ │ │ │ │ ├── DataSeries.php
│ │ │ │ │ │ ├── DataSeriesValues.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── GridLines.php
│ │ │ │ │ │ ├── Layout.php
│ │ │ │ │ │ ├── Legend.php
│ │ │ │ │ │ ├── PlotArea.php
│ │ │ │ │ │ ├── Properties.php
│ │ │ │ │ │ ├── Renderer
│ │ │ │ │ │ │ ├── PHP Charting Libraries.txt
│ │ │ │ │ │ │ └── jpgraph.php
│ │ │ │ │ │ └── Title.php
│ │ │ │ │ ├── Chart.php
│ │ │ │ │ ├── Comment.php
│ │ │ │ │ ├── DocumentProperties.php
│ │ │ │ │ ├── DocumentSecurity.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── HashTable.php
│ │ │ │ │ ├── Helper
│ │ │ │ │ │ └── HTML.php
│ │ │ │ │ ├── IComparable.php
│ │ │ │ │ ├── IOFactory.php
│ │ │ │ │ ├── NamedRange.php
│ │ │ │ │ ├── Reader
│ │ │ │ │ │ ├── Abstract.php
│ │ │ │ │ │ ├── CSV.php
│ │ │ │ │ │ ├── DefaultReadFilter.php
│ │ │ │ │ │ ├── Excel2003XML.php
│ │ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ │ └── Theme.php
│ │ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ │ ├── Excel5
│ │ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ │ ├── MD5.php
│ │ │ │ │ │ │ └── RC4.php
│ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ │ ├── IReader.php
│ │ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ │ └── SYLK.php
│ │ │ │ │ ├── ReferenceHelper.php
│ │ │ │ │ ├── RichText
│ │ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ │ ├── Run.php
│ │ │ │ │ │ └── TextElement.php
│ │ │ │ │ ├── RichText.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ ├── Shared
│ │ │ │ │ │ ├── CodePage.php
│ │ │ │ │ │ ├── Date.php
│ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ ├── Escher
│ │ │ │ │ │ │ ├── DgContainer
│ │ │ │ │ │ │ │ ├── SpgrContainer
│ │ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ │ ├── DggContainer
│ │ │ │ │ │ │ │ ├── BstoreContainer
│ │ │ │ │ │ │ │ │ ├── BSE
│ │ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── JAMA
│ │ │ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ │ │ │ ├── LUDecomposition.php
│ │ │ │ │ │ │ ├── Matrix.php
│ │ │ │ │ │ │ ├── QRDecomposition.php
│ │ │ │ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ │ │ │ └── utils
│ │ │ │ │ │ │ ├── Error.php
│ │ │ │ │ │ │ └── Maths.php
│ │ │ │ │ │ ├── OLE
│ │ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ │ ├── PPS
│ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ │ └── PPS.php
│ │ │ │ │ │ ├── OLE.php
│ │ │ │ │ │ ├── OLERead.php
│ │ │ │ │ │ ├── PCLZip
│ │ │ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── PasswordHasher.php
│ │ │ │ │ │ ├── String.php
│ │ │ │ │ │ ├── TimeZone.php
│ │ │ │ │ │ ├── XMLWriter.php
│ │ │ │ │ │ ├── ZipArchive.php
│ │ │ │ │ │ ├── ZipStreamWrapper.php
│ │ │ │ │ │ └── trend
│ │ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ │ └── trendClass.php
│ │ │ │ │ ├── Style
│ │ │ │ │ │ ├── Alignment.php
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ ├── Borders.php
│ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ ├── Conditional.php
│ │ │ │ │ │ ├── Fill.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ └── Supervisor.php
│ │ │ │ │ ├── Style.php
│ │ │ │ │ ├── Worksheet
│ │ │ │ │ │ ├── AutoFilter
│ │ │ │ │ │ │ ├── Column
│ │ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ │ └── Column.php
│ │ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ │ ├── Column.php
│ │ │ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ │ ├── ColumnIterator.php
│ │ │ │ │ │ ├── Drawing
│ │ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ ├── Row.php
│ │ │ │ │ │ ├── RowCellIterator.php
│ │ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ │ └── SheetView.php
│ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ ├── WorksheetIterator.php
│ │ │ │ │ ├── Writer
│ │ │ │ │ │ ├── Abstract.php
│ │ │ │ │ │ ├── CSV.php
│ │ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ │ ├── Comments.php
│ │ │ │ │ │ │ ├── ContentTypes.php
│ │ │ │ │ │ │ ├── DocProps.php
│ │ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ │ ├── Rels.php
│ │ │ │ │ │ │ ├── RelsRibbon.php
│ │ │ │ │ │ │ ├── RelsVBA.php
│ │ │ │ │ │ │ ├── StringTable.php
│ │ │ │ │ │ │ ├── Style.php
│ │ │ │ │ │ │ ├── Theme.php
│ │ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ │ ├── Excel5
│ │ │ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ │ ├── Parser.php
│ │ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ │ └── Xf.php
│ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── IWriter.php
│ │ │ │ │ │ ├── OpenDocument
│ │ │ │ │ │ │ ├── Cell
│ │ │ │ │ │ │ │ └── Comment.php
│ │ │ │ │ │ │ ├── Content.php
│ │ │ │ │ │ │ ├── Meta.php
│ │ │ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ │ │ ├── Settings.php
│ │ │ │ │ │ │ ├── Styles.php
│ │ │ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ │ ├── OpenDocument.php
│ │ │ │ │ │ ├── PDF
│ │ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ │ │ ├── mPDF.php
│ │ │ │ │ │ │ └── tcPDF.php
│ │ │ │ │ │ └── PDF.php
│ │ │ │ │ └── locale
│ │ │ │ │ ├── bg
│ │ │ │ │ │ └── config
│ │ │ │ │ ├── cs
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── da
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── de
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── en
│ │ │ │ │ │ └── uk
│ │ │ │ │ │ └── config
│ │ │ │ │ ├── es
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── fi
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── fr
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── hu
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── it
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── nl
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── no
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── pl
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── pt
│ │ │ │ │ │ ├── br
│ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── ru
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── sv
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ └── tr
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ └── PHPExcel.php
│ │ │ ├── FIdConst.class.php
│ │ │ ├── Pinyin
│ │ │ │ ├── LICENSE
│ │ │ │ └── pinyin.php
│ │ │ ├── index.html
│ │ │ └── tcpdf
│ │ │ ├── LICENSE.TXT
│ │ │ ├── composer.json
│ │ │ ├── config
│ │ │ │ └── tcpdf_config.php
│ │ │ ├── fonts
│ │ │ │ ├── courier.php
│ │ │ │ ├── courierb.php
│ │ │ │ ├── courierbi.php
│ │ │ │ ├── courieri.php
│ │ │ │ ├── helvetica.php
│ │ │ │ ├── helveticab.php
│ │ │ │ ├── helveticabi.php
│ │ │ │ ├── helveticai.php
│ │ │ │ ├── hysmyeongjostdmedium.php
│ │ │ │ ├── kozgopromedium.php
│ │ │ │ ├── kozminproregular.php
│ │ │ │ ├── msungstdlight.php
│ │ │ │ ├── pdfacourier.php
│ │ │ │ ├── stsongstdlight.php
│ │ │ │ ├── symbol.php
│ │ │ │ ├── times.php
│ │ │ │ ├── timesb.php
│ │ │ │ ├── timesbi.php
│ │ │ │ ├── timesi.php
│ │ │ │ └── zapfdingbats.php
│ │ │ ├── include
│ │ │ │ ├── barcodes
│ │ │ │ │ ├── datamatrix.php
│ │ │ │ │ ├── pdf417.php
│ │ │ │ │ └── qrcode.php
│ │ │ │ ├── sRGB.icc
│ │ │ │ ├── tcpdf_colors.php
│ │ │ │ ├── tcpdf_filters.php
│ │ │ │ ├── tcpdf_font_data.php
│ │ │ │ ├── tcpdf_fonts.php
│ │ │ │ ├── tcpdf_images.php
│ │ │ │ └── tcpdf_static.php
│ │ │ ├── tcpdf.php
│ │ │ ├── tcpdf_autoconfig.php
│ │ │ ├── tcpdf_barcodes_1d.php
│ │ │ ├── tcpdf_barcodes_2d.php
│ │ │ ├── tcpdf_import.php
│ │ │ └── tcpdf_parser.php
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ ├── Controller
│ │ │ ├── AboutController.class.php
│ │ │ ├── BillController.class.php
│ │ │ ├── BizConfigController.class.php
│ │ │ ├── BizlogController.class.php
│ │ │ ├── CustomerController.class.php
│ │ │ ├── FormController.class.php
│ │ │ ├── FundsController.class.php
│ │ │ ├── GoodsController.class.php
│ │ │ ├── HelpController.class.php
│ │ │ ├── IndexController.class.php
│ │ │ ├── InitInventoryController.class.php
│ │ │ ├── InvCheckController.class.php
│ │ │ ├── InvTransferController.class.php
│ │ │ ├── InventoryController.class.php
│ │ │ ├── MainMenuController.class.php
│ │ │ ├── PSIBaseController.class.php
│ │ │ ├── PermissionController.class.php
│ │ │ ├── PortalController.class.php
│ │ │ ├── PurchaseController.class.php
│ │ │ ├── PurchaseRejController.class.php
│ │ │ ├── ReportController.class.php
│ │ │ ├── SaleController.class.php
│ │ │ ├── SupplierController.class.php
│ │ │ ├── UserController.class.php
│ │ │ ├── WarehouseController.class.php
│ │ │ ├── WindowsController.class.php
│ │ │ └── index.html
│ │ ├── DAO
│ │ │ ├── GoodsBomDAO.class.php
│ │ │ ├── PSIBaseDAO.class.php
│ │ │ └── UserDAO.class.php
│ │ ├── Model
│ │ │ └── index.html
│ │ ├── Service
│ │ │ ├── BillViewService.class.php
│ │ │ ├── BizConfigService.class.php
│ │ │ ├── BizlogService.class.php
│ │ │ ├── CashService.class.php
│ │ │ ├── CustomerService.class.php
│ │ │ ├── DataOrgService.class.php
│ │ │ ├── FIdService.class.php
│ │ │ ├── GoodsService.class.php
│ │ │ ├── ICBillService.class.php
│ │ │ ├── ITBillService.class.php
│ │ │ ├── IdGenService.class.php
│ │ │ ├── ImportService.class.php
│ │ │ ├── InitInventoryService.class.php
│ │ │ ├── InstallService.class.php
│ │ │ ├── InventoryReportService.class.php
│ │ │ ├── InventoryService.class.php
│ │ │ ├── MainMenuService.class.php
│ │ │ ├── PDFService.class.php
│ │ │ ├── POBillService.class.php
│ │ │ ├── PRBillService.class.php
│ │ │ ├── PSIBaseService.class.php
│ │ │ ├── PWBillService.class.php
│ │ │ ├── PayablesReportService.class.php
│ │ │ ├── PayablesService.class.php
│ │ │ ├── PermissionService.class.php
│ │ │ ├── PinyinService.class.php
│ │ │ ├── PortalService.class.php
│ │ │ ├── PrePaymentService.class.php
│ │ │ ├── PreReceivingService.class.php
│ │ │ ├── ReceivablesReportService.class.php
│ │ │ ├── ReceivablesService.class.php
│ │ │ ├── SOBillService.class.php
│ │ │ ├── SRBillService.class.php
│ │ │ ├── SaleReportService.class.php
│ │ │ ├── SupplierService.class.php
│ │ │ ├── UpdateDBService.class.php
│ │ │ ├── UserService.class.php
│ │ │ ├── WSBillService.class.php
│ │ │ └── WarehouseService.class.php
│ │ ├── View
│ │ │ ├── About
│ │ │ │ └── index.html
│ │ │ ├── Bill
│ │ │ │ ├── viewICBill.html
│ │ │ │ ├── viewITBill.html
│ │ │ │ ├── viewIndex.html
│ │ │ │ ├── viewPRBill.html
│ │ │ │ ├── viewPWBill.html
│ │ │ │ ├── viewSRBill.html
│ │ │ │ └── viewWSBill.html
│ │ │ ├── BizConfig
│ │ │ │ └── index.html
│ │ │ ├── Bizlog
│ │ │ │ └── index.html
│ │ │ ├── Customer
│ │ │ │ └── index.html
│ │ │ ├── Form
│ │ │ │ └── index.html
│ │ │ ├── Funds
│ │ │ │ ├── cashIndex.html
│ │ │ │ ├── payIndex.html
│ │ │ │ ├── prepaymentIndex.html
│ │ │ │ ├── prereceivingIndex.html
│ │ │ │ └── rvIndex.html
│ │ │ ├── Goods
│ │ │ │ ├── brandIndex.html
│ │ │ │ ├── index.html
│ │ │ │ └── unitIndex.html
│ │ │ ├── Index
│ │ │ │ └── index.html
│ │ │ ├── InvCheck
│ │ │ │ └── index.html
│ │ │ ├── InvTransfer
│ │ │ │ └── index.html
│ │ │ ├── Inventory
│ │ │ │ ├── initIndex.html
│ │ │ │ └── inventoryQuery.html
│ │ │ ├── MainMenu
│ │ │ │ └── navigateTo.html
│ │ │ ├── Permission
│ │ │ │ └── index.html
│ │ │ ├── Purchase
│ │ │ │ ├── pobillIndex.html
│ │ │ │ └── pwbillIndex.html
│ │ │ ├── PurchaseRej
│ │ │ │ └── index.html
│ │ │ ├── Report
│ │ │ │ ├── inventoryUpper.html
│ │ │ │ ├── payablesAge.html
│ │ │ │ ├── receivablesAge.html
│ │ │ │ ├── safetyInventory.html
│ │ │ │ ├── saleDayByBizuser.html
│ │ │ │ ├── saleDayByCustomer.html
│ │ │ │ ├── saleDayByGoods.html
│ │ │ │ ├── saleDayByWarehouse.html
│ │ │ │ ├── saleMonthByBizuser.html
│ │ │ │ ├── saleMonthByCustomer.html
│ │ │ │ ├── saleMonthByGoods.html
│ │ │ │ └── saleMonthByWarehouse.html
│ │ │ ├── Sale
│ │ │ │ ├── soIndex.html
│ │ │ │ ├── srIndex.html
│ │ │ │ └── wsIndex.html
│ │ │ ├── Supplier
│ │ │ │ └── index.html
│ │ │ ├── User
│ │ │ │ ├── changeMyPassword.html
│ │ │ │ ├── index.html
│ │ │ │ └── login.html
│ │ │ ├── Warehouse
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── layout.html
│ │ │ └── layoutLogin.html
│ │ └── index.html
│ ├── Mobile
│ │ ├── Controller
│ │ │ ├── IndexController.class.php
│ │ │ └── LoginController.class.php
│ │ └── View
│ │ ├── Index
│ │ │ ├── about.html
│ │ │ └── index.html
│ │ ├── Login
│ │ │ └── login.html
│ │ └── layout.html
│ ├── README.md
│ └── index.html
├── Public
│ ├── Content
│ │ ├── Site.css
│ │ └── icons.css
│ ├── ExtJS
│ │ ├── ext-all.js
│ │ ├── ext-lang-zh_CN.js
│ │ └── resources
│ │ ├── css
│ │ │ └── ext-all.css
│ │ └── ext-theme-classic
│ │ ├── ext-theme-classic-all.css
│ │ └── images
│ │ ├── boundlist
│ │ │ └── trigger-arrow.png
│ │ ├── box
│ │ │ ├── corners-blue.gif
│ │ │ ├── corners.gif
│ │ │ ├── l-blue.gif
│ │ │ ├── l.gif
│ │ │ ├── r-blue.gif
│ │ │ ├── r.gif
│ │ │ ├── tb-blue.gif
│ │ │ └── tb.gif
│ │ ├── btn
│ │ │ ├── btn-default-large-bg.gif
│ │ │ ├── btn-default-large-corners.gif
│ │ │ ├── btn-default-large-disabled-bg.gif
│ │ │ ├── btn-default-large-disabled-corners.gif
│ │ │ ├── btn-default-large-disabled-fbg.gif
│ │ │ ├── btn-default-large-disabled-sides.gif
│ │ │ ├── btn-default-large-fbg.gif
│ │ │ ├── btn-default-large-focus-bg.gif
│ │ │ ├── btn-default-large-focus-corners.gif
│ │ │ ├── btn-default-large-focus-fbg.gif
│ │ │ ├── btn-default-large-focus-sides.gif
│ │ │ ├── btn-default-large-over-bg.gif
│ │ │ ├── btn-default-large-over-corners.gif
│ │ │ ├── btn-default-large-over-fbg.gif
│ │ │ ├── btn-default-large-over-sides.gif
│ │ │ ├── btn-default-large-pressed-bg.gif
│ │ │ ├── btn-default-large-pressed-corners.gif
│ │ │ ├── btn-default-large-pressed-fbg.gif
│ │ │ ├── btn-default-large-pressed-sides.gif
│ │ │ ├── btn-default-large-sides.gif
│ │ │ ├── btn-default-medium-bg.gif
│ │ │ ├── btn-default-medium-corners.gif
│ │ │ ├── btn-default-medium-disabled-bg.gif
│ │ │ ├── btn-default-medium-disabled-corners.gif
│ │ │ ├── btn-default-medium-disabled-fbg.gif
│ │ │ ├── btn-default-medium-disabled-sides.gif
│ │ │ ├── btn-default-medium-fbg.gif
│ │ │ ├── btn-default-medium-focus-bg.gif
│ │ │ ├── btn-default-medium-focus-corners.gif
│ │ │ ├── btn-default-medium-focus-fbg.gif
│ │ │ ├── btn-default-medium-focus-sides.gif
│ │ │ ├── btn-default-medium-over-bg.gif
│ │ │ ├── btn-default-medium-over-corners.gif
│ │ │ ├── btn-default-medium-over-fbg.gif
│ │ │ ├── btn-default-medium-over-sides.gif
│ │ │ ├── btn-default-medium-pressed-bg.gif
│ │ │ ├── btn-default-medium-pressed-corners.gif
│ │ │ ├── btn-default-medium-pressed-fbg.gif
│ │ │ ├── btn-default-medium-pressed-sides.gif
│ │ │ ├── btn-default-medium-sides.gif
│ │ │ ├── btn-default-small-bg.gif
│ │ │ ├── btn-default-small-corners.gif
│ │ │ ├── btn-default-small-disabled-bg.gif
│ │ │ ├── btn-default-small-disabled-corners.gif
│ │ │ ├── btn-default-small-disabled-fbg.gif
│ │ │ ├── btn-default-small-disabled-sides.gif
│ │ │ ├── btn-default-small-fbg.gif
│ │ │ ├── btn-default-small-focus-bg.gif
│ │ │ ├── btn-default-small-focus-corners.gif
│ │ │ ├── btn-default-small-focus-fbg.gif
│ │ │ ├── btn-default-small-focus-sides.gif
│ │ │ ├── btn-default-small-over-bg.gif
│ │ │ ├── btn-default-small-over-corners.gif
│ │ │ ├── btn-default-small-over-fbg.gif
│ │ │ ├── btn-default-small-over-sides.gif
│ │ │ ├── btn-default-small-pressed-bg.gif
│ │ │ ├── btn-default-small-pressed-corners.gif
│ │ │ ├── btn-default-small-pressed-fbg.gif
│ │ │ ├── btn-default-small-pressed-sides.gif
│ │ │ ├── btn-default-small-sides.gif
│ │ │ ├── btn-default-toolbar-large-disabled-corners.gif
│ │ │ ├── btn-default-toolbar-large-disabled-sides.gif
│ │ │ ├── btn-default-toolbar-large-focus-bg.gif
│ │ │ ├── btn-default-toolbar-large-focus-corners.gif
│ │ │ ├── btn-default-toolbar-large-focus-fbg.gif
│ │ │ ├── btn-default-toolbar-large-focus-sides.gif
│ │ │ ├── btn-default-toolbar-large-over-bg.gif
│ │ │ ├── btn-default-toolbar-large-over-corners.gif
│ │ │ ├── btn-default-toolbar-large-over-fbg.gif
│ │ │ ├── btn-default-toolbar-large-over-sides.gif
│ │ │ ├── btn-default-toolbar-large-pressed-bg.gif
│ │ │ ├── btn-default-toolbar-large-pressed-corners.gif
│ │ │ ├── btn-default-toolbar-large-pressed-fbg.gif
│ │ │ ├── btn-default-toolbar-large-pressed-sides.gif
│ │ │ ├── btn-default-toolbar-medium-disabled-corners.gif
│ │ │ ├── btn-default-toolbar-medium-disabled-sides.gif
│ │ │ ├── btn-default-toolbar-medium-focus-bg.gif
│ │ │ ├── btn-default-toolbar-medium-focus-corners.gif
│ │ │ ├── btn-default-toolbar-medium-focus-fbg.gif
│ │ │ ├── btn-default-toolbar-medium-focus-sides.gif
│ │ │ ├── btn-default-toolbar-medium-over-bg.gif
│ │ │ ├── btn-default-toolbar-medium-over-corners.gif
│ │ │ ├── btn-default-toolbar-medium-over-fbg.gif
│ │ │ ├── btn-default-toolbar-medium-over-sides.gif
│ │ │ ├── btn-default-toolbar-medium-pressed-bg.gif
│ │ │ ├── btn-default-toolbar-medium-pressed-corners.gif
│ │ │ ├── btn-default-toolbar-medium-pressed-fbg.gif
│ │ │ ├── btn-default-toolbar-medium-pressed-sides.gif
│ │ │ ├── btn-default-toolbar-small-disabled-corners.gif
│ │ │ ├── btn-default-toolbar-small-disabled-sides.gif
│ │ │ ├── btn-default-toolbar-small-focus-bg.gif
│ │ │ ├── btn-default-toolbar-small-focus-corners.gif
│ │ │ ├── btn-default-toolbar-small-focus-fbg.gif
│ │ │ ├── btn-default-toolbar-small-focus-sides.gif
│ │ │ ├── btn-default-toolbar-small-over-bg.gif
│ │ │ ├── btn-default-toolbar-small-over-corners.gif
│ │ │ ├── btn-default-toolbar-small-over-fbg.gif
│ │ │ ├── btn-default-toolbar-small-over-sides.gif
│ │ │ ├── btn-default-toolbar-small-pressed-bg.gif
│ │ │ ├── btn-default-toolbar-small-pressed-corners.gif
│ │ │ ├── btn-default-toolbar-small-pressed-fbg.gif
│ │ │ └── btn-default-toolbar-small-pressed-sides.gif
│ │ ├── btn-group
│ │ │ ├── btn-group-default-framed-corners.gif
│ │ │ ├── btn-group-default-framed-notitle-corners.gif
│ │ │ ├── btn-group-default-framed-notitle-sides.gif
│ │ │ └── btn-group-default-framed-sides.gif
│ │ ├── button
│ │ │ ├── arrow.gif
│ │ │ ├── btn.gif
│ │ │ ├── group-cs.gif
│ │ │ ├── group-lr.gif
│ │ │ ├── group-tb.gif
│ │ │ ├── s-arrow-b-noline.gif
│ │ │ ├── s-arrow-b.gif
│ │ │ ├── s-arrow-bo.gif
│ │ │ ├── s-arrow-light-rtl.gif
│ │ │ ├── s-arrow-light.gif
│ │ │ ├── s-arrow-noline-rtl.gif
│ │ │ ├── s-arrow-noline.gif
│ │ │ ├── s-arrow-o-rtl.gif
│ │ │ ├── s-arrow-o.gif
│ │ │ ├── s-arrow-rtl.gif
│ │ │ └── s-arrow.gif
│ │ ├── datepicker
│ │ │ ├── datepicker-footer-bg.gif
│ │ │ └── datepicker-header-bg.gif
│ │ ├── dd
│ │ │ ├── drop-add.gif
│ │ │ ├── drop-no.gif
│ │ │ └── drop-yes.gif
│ │ ├── editor
│ │ │ └── tb-sprite.gif
│ │ ├── form
│ │ │ ├── checkbox.gif
│ │ │ ├── clear-trigger-rtl.gif
│ │ │ ├── clear-trigger.gif
│ │ │ ├── date-trigger-rtl.gif
│ │ │ ├── date-trigger.gif
│ │ │ ├── error-tip-corners.gif
│ │ │ ├── exclamation.gif
│ │ │ ├── radio.gif
│ │ │ ├── search-trigger-rtl.gif
│ │ │ ├── search-trigger.gif
│ │ │ ├── spinner-rtl.gif
│ │ │ ├── spinner-small-rtl.gif
│ │ │ ├── spinner-small.gif
│ │ │ ├── spinner.gif
│ │ │ ├── text-bg.gif
│ │ │ ├── trigger-rtl.gif
│ │ │ ├── trigger-square-rtl.gif
│ │ │ ├── trigger-square.gif
│ │ │ ├── trigger-tpl-rtl.gif
│ │ │ ├── trigger-tpl.gif
│ │ │ └── trigger.gif
│ │ ├── grid
│ │ │ ├── arrow-left-white.gif
│ │ │ ├── arrow-right-white.gif
│ │ │ ├── cell-special-bg.gif
│ │ │ ├── cell-special-bg.png
│ │ │ ├── cell-special-selected-bg.gif
│ │ │ ├── cell-special-selected-bg.png
│ │ │ ├── col-move-bottom.gif
│ │ │ ├── col-move-top.gif
│ │ │ ├── column-header-bg.gif
│ │ │ ├── column-header-over-bg.gif
│ │ │ ├── columns.gif
│ │ │ ├── dd-insert-arrow-left.gif
│ │ │ ├── dd-insert-arrow-left.png
│ │ │ ├── dd-insert-arrow-right.gif
│ │ │ ├── dd-insert-arrow-right.png
│ │ │ ├── dirty-rtl.gif
│ │ │ ├── dirty.gif
│ │ │ ├── done.gif
│ │ │ ├── drop-no.gif
│ │ │ ├── drop-yes.gif
│ │ │ ├── footer-bg.gif
│ │ │ ├── grid-blue-hd.gif
│ │ │ ├── grid-blue-split.gif
│ │ │ ├── grid-hrow.gif
│ │ │ ├── grid-loading.gif
│ │ │ ├── grid-split.gif
│ │ │ ├── grid-vista-hd.gif
│ │ │ ├── grid3-hd-btn-left.gif
│ │ │ ├── grid3-hd-btn.gif
│ │ │ ├── grid3-hrow-over.gif
│ │ │ ├── grid3-hrow.gif
│ │ │ ├── grid3-rowheader.gif
│ │ │ ├── group-by.gif
│ │ │ ├── group-collapse.gif
│ │ │ ├── group-expand-sprite.gif
│ │ │ ├── group-expand.gif
│ │ │ ├── hd-pop.gif
│ │ │ ├── hmenu-asc.gif
│ │ │ ├── hmenu-desc.gif
│ │ │ ├── hmenu-lock.gif
│ │ │ ├── hmenu-lock.png
│ │ │ ├── hmenu-unlock.gif
│ │ │ ├── hmenu-unlock.png
│ │ │ ├── invalid_line.gif
│ │ │ ├── loading.gif
│ │ │ ├── mso-hd.gif
│ │ │ ├── nowait.gif
│ │ │ ├── page-first-disabled.gif
│ │ │ ├── page-first.gif
│ │ │ ├── page-last-disabled.gif
│ │ │ ├── page-last.gif
│ │ │ ├── page-next-disabled.gif
│ │ │ ├── page-next.gif
│ │ │ ├── page-prev-disabled.gif
│ │ │ ├── page-prev.gif
│ │ │ ├── pick-button.gif
│ │ │ ├── property-cell-bg.gif
│ │ │ ├── property-cell-selected-bg.gif
│ │ │ ├── refresh-disabled.gif
│ │ │ ├── refresh.gif
│ │ │ ├── row-check-sprite.gif
│ │ │ ├── row-expand-sprite.gif
│ │ │ ├── row-over.gif
│ │ │ ├── row-sel.gif
│ │ │ ├── sort-hd.gif
│ │ │ ├── sort_asc.gif
│ │ │ ├── sort_desc.gif
│ │ │ └── wait.gif
│ │ ├── grid-row-editor-buttons
│ │ │ ├── grid-row-editor-buttons-default-bottom-corners.gif
│ │ │ ├── grid-row-editor-buttons-default-bottom-sides.gif
│ │ │ ├── grid-row-editor-buttons-default-top-corners.gif
│ │ │ └── grid-row-editor-buttons-default-top-sides.gif
│ │ ├── layout
│ │ │ ├── mini-bottom.gif
│ │ │ ├── mini-left.gif
│ │ │ ├── mini-right.gif
│ │ │ └── mini-top.gif
│ │ ├── menu
│ │ │ ├── checked.gif
│ │ │ ├── group-checked.gif
│ │ │ ├── item-over.gif
│ │ │ ├── menu-item-active-bg.gif
│ │ │ ├── menu-parent-left.gif
│ │ │ ├── menu-parent.gif
│ │ │ ├── menu.gif
│ │ │ ├── scroll-bottom.gif
│ │ │ ├── scroll-top.gif
│ │ │ └── unchecked.gif
│ │ ├── panel
│ │ │ ├── panel-default-framed-corners.gif
│ │ │ └── panel-default-framed-sides.gif
│ │ ├── panel-header
│ │ │ ├── panel-header-default-bottom-bg.gif
│ │ │ ├── panel-header-default-framed-bottom-bg.gif
│ │ │ ├── panel-header-default-framed-bottom-corners.gif
│ │ │ ├── panel-header-default-framed-bottom-fbg.gif
│ │ │ ├── panel-header-default-framed-bottom-sides.gif
│ │ │ ├── panel-header-default-framed-collapsed-bottom-bg.gif
│ │ │ ├── panel-header-default-framed-collapsed-bottom-corners.gif
│ │ │ ├── panel-header-default-framed-collapsed-bottom-fbg.gif
│ │ │ ├── panel-header-default-framed-collapsed-bottom-sides.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-bg-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-bg.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-corners-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-corners.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-fbg-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-fbg.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-sides-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-left-sides.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-bg-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-bg.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-corners-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-corners.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-fbg-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-fbg.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-sides-rtl.gif
│ │ │ ├── panel-header-default-framed-collapsed-right-sides.gif
│ │ │ ├── panel-header-default-framed-collapsed-top-bg.gif
│ │ │ ├── panel-header-default-framed-collapsed-top-corners.gif
│ │ │ ├── panel-header-default-framed-collapsed-top-fbg.gif
│ │ │ ├── panel-header-default-framed-collapsed-top-sides.gif
│ │ │ ├── panel-header-default-framed-left-bg-rtl.gif
│ │ │ ├── panel-header-default-framed-left-bg.gif
│ │ │ ├── panel-header-default-framed-left-corners-rtl.gif
│ │ │ ├── panel-header-default-framed-left-corners.gif
│ │ │ ├── panel-header-default-framed-left-fbg-rtl.gif
│ │ │ ├── panel-header-default-framed-left-fbg.gif
│ │ │ ├── panel-header-default-framed-left-sides-rtl.gif
│ │ │ ├── panel-header-default-framed-left-sides.gif
│ │ │ ├── panel-header-default-framed-right-bg-rtl.gif
│ │ │ ├── panel-header-default-framed-right-bg.gif
│ │ │ ├── panel-header-default-framed-right-corners-rtl.gif
│ │ │ ├── panel-header-default-framed-right-corners.gif
│ │ │ ├── panel-header-default-framed-right-fbg-rtl.gif
│ │ │ ├── panel-header-default-framed-right-fbg.gif
│ │ │ ├── panel-header-default-framed-right-sides-rtl.gif
│ │ │ ├── panel-header-default-framed-right-sides.gif
│ │ │ ├── panel-header-default-framed-top-bg.gif
│ │ │ ├── panel-header-default-framed-top-corners.gif
│ │ │ ├── panel-header-default-framed-top-fbg.gif
│ │ │ ├── panel-header-default-framed-top-sides.gif
│ │ │ ├── panel-header-default-left-bg-rtl.gif
│ │ │ ├── panel-header-default-left-bg.gif
│ │ │ ├── panel-header-default-right-bg-rtl.gif
│ │ │ ├── panel-header-default-right-bg.gif
│ │ │ └── panel-header-default-top-bg.gif
│ │ ├── progress
│ │ │ └── progress-default-bg.gif
│ │ ├── shared
│ │ │ ├── blue-loading.gif
│ │ │ ├── calendar.gif
│ │ │ ├── glass-bg.gif
│ │ │ ├── hd-sprite.gif
│ │ │ ├── icon-error.gif
│ │ │ ├── icon-info.gif
│ │ │ ├── icon-question.gif
│ │ │ ├── icon-warning.gif
│ │ │ ├── large-loading.gif
│ │ │ ├── left-btn.gif
│ │ │ ├── loading-balls.gif
│ │ │ ├── right-btn.gif
│ │ │ ├── shadow-c.png
│ │ │ ├── shadow-lr.png
│ │ │ ├── shadow.png
│ │ │ └── warning.gif
│ │ ├── sizer
│ │ │ ├── e-handle-dark.gif
│ │ │ ├── e-handle.gif
│ │ │ ├── ne-handle-dark.gif
│ │ │ ├── ne-handle.gif
│ │ │ ├── nw-handle-dark.gif
│ │ │ ├── nw-handle.gif
│ │ │ ├── s-handle-dark.gif
│ │ │ ├── s-handle.gif
│ │ │ ├── se-handle-dark.gif
│ │ │ ├── se-handle.gif
│ │ │ ├── square.gif
│ │ │ ├── sw-handle-dark.gif
│ │ │ └── sw-handle.gif
│ │ ├── slider
│ │ │ ├── slider-bg.gif
│ │ │ ├── slider-bg.png
│ │ │ ├── slider-thumb.gif
│ │ │ ├── slider-thumb.png
│ │ │ ├── slider-v-bg.gif
│ │ │ ├── slider-v-bg.png
│ │ │ ├── slider-v-thumb.gif
│ │ │ └── slider-v-thumb.png
│ │ ├── tab
│ │ │ ├── tab-default-bottom-active-bg.gif
│ │ │ ├── tab-default-bottom-active-corners.gif
│ │ │ ├── tab-default-bottom-active-fbg.gif
│ │ │ ├── tab-default-bottom-active-sides.gif
│ │ │ ├── tab-default-bottom-bg.gif
│ │ │ ├── tab-default-bottom-corners.gif
│ │ │ ├── tab-default-bottom-disabled-bg.gif
│ │ │ ├── tab-default-bottom-disabled-corners.gif
│ │ │ ├── tab-default-bottom-disabled-fbg.gif
│ │ │ ├── tab-default-bottom-disabled-sides.gif
│ │ │ ├── tab-default-bottom-fbg.gif
│ │ │ ├── tab-default-bottom-over-bg.gif
│ │ │ ├── tab-default-bottom-over-corners.gif
│ │ │ ├── tab-default-bottom-over-fbg.gif
│ │ │ ├── tab-default-bottom-over-sides.gif
│ │ │ ├── tab-default-bottom-sides.gif
│ │ │ ├── tab-default-close.gif
│ │ │ ├── tab-default-top-active-bg.gif
│ │ │ ├── tab-default-top-active-corners.gif
│ │ │ ├── tab-default-top-active-fbg.gif
│ │ │ ├── tab-default-top-active-sides.gif
│ │ │ ├── tab-default-top-bg.gif
│ │ │ ├── tab-default-top-corners.gif
│ │ │ ├── tab-default-top-disabled-bg.gif
│ │ │ ├── tab-default-top-disabled-corners.gif
│ │ │ ├── tab-default-top-disabled-fbg.gif
│ │ │ ├── tab-default-top-disabled-sides.gif
│ │ │ ├── tab-default-top-fbg.gif
│ │ │ ├── tab-default-top-over-bg.gif
│ │ │ ├── tab-default-top-over-corners.gif
│ │ │ ├── tab-default-top-over-fbg.gif
│ │ │ ├── tab-default-top-over-sides.gif
│ │ │ └── tab-default-top-sides.gif
│ │ ├── tab-bar
│ │ │ ├── default-scroll-bottom-left.gif
│ │ │ ├── default-scroll-bottom-right.gif
│ │ │ ├── default-scroll-left-bottom.gif
│ │ │ ├── default-scroll-left-top.gif
│ │ │ ├── default-scroll-right-bottom.gif
│ │ │ ├── default-scroll-right-top.gif
│ │ │ ├── default-scroll-top-left.gif
│ │ │ ├── default-scroll-top-right.gif
│ │ │ ├── tab-bar-default-bottom-bg.gif
│ │ │ ├── tab-bar-default-left-bg.gif
│ │ │ ├── tab-bar-default-right-bg.gif
│ │ │ └── tab-bar-default-top-bg.gif
│ │ ├── tip
│ │ │ ├── tip-default-corners.gif
│ │ │ ├── tip-default-sides.gif
│ │ │ ├── tip-form-invalid-corners.gif
│ │ │ └── tip-form-invalid-sides.gif
│ │ ├── toolbar
│ │ │ ├── more-left.gif
│ │ │ ├── more.gif
│ │ │ ├── scroll-left.gif
│ │ │ ├── scroll-right.gif
│ │ │ └── toolbar-default-bg.gif
│ │ ├── tools
│ │ │ ├── tool-sprite-tpl.gif
│ │ │ ├── tool-sprites.gif
│ │ │ └── tools-sprites-trans.gif
│ │ ├── tree
│ │ │ ├── arrows-rtl.gif
│ │ │ ├── arrows.gif
│ │ │ ├── drop-above.gif
│ │ │ ├── drop-add.gif
│ │ │ ├── drop-append.gif
│ │ │ ├── drop-below.gif
│ │ │ ├── drop-between.gif
│ │ │ ├── drop-no.gif
│ │ │ ├── drop-over.gif
│ │ │ ├── drop-under.gif
│ │ │ ├── drop-yes.gif
│ │ │ ├── elbow-end-minus-rtl.gif
│ │ │ ├── elbow-end-minus.gif
│ │ │ ├── elbow-end-plus-rtl.gif
│ │ │ ├── elbow-end-plus.gif
│ │ │ ├── elbow-end-rtl.gif
│ │ │ ├── elbow-end.gif
│ │ │ ├── elbow-line-rtl.gif
│ │ │ ├── elbow-line.gif
│ │ │ ├── elbow-minus-nl-rtl.gif
│ │ │ ├── elbow-minus-nl.gif
│ │ │ ├── elbow-minus-rtl.gif
│ │ │ ├── elbow-minus.gif
│ │ │ ├── elbow-plus-nl-rtl.gif
│ │ │ ├── elbow-plus-nl.gif
│ │ │ ├── elbow-plus-rtl.gif
│ │ │ ├── elbow-plus.gif
│ │ │ ├── elbow-rtl.gif
│ │ │ ├── elbow.gif
│ │ │ ├── folder-open-rtl.gif
│ │ │ ├── folder-open.gif
│ │ │ ├── folder-rtl.gif
│ │ │ ├── folder.gif
│ │ │ ├── leaf-rtl.gif
│ │ │ ├── leaf.gif
│ │ │ ├── loading.gif
│ │ │ └── s.gif
│ │ ├── util
│ │ │ └── splitter
│ │ │ ├── mini-bottom.gif
│ │ │ ├── mini-left.gif
│ │ │ ├── mini-right.gif
│ │ │ └── mini-top.gif
│ │ ├── window
│ │ │ ├── window-default-corners.gif
│ │ │ └── window-default-sides.gif
│ │ └── window-header
│ │ ├── window-header-default-bottom-corners.gif
│ │ ├── window-header-default-bottom-sides.gif
│ │ ├── window-header-default-collapsed-bottom-corners.gif
│ │ ├── window-header-default-collapsed-bottom-sides.gif
│ │ ├── window-header-default-collapsed-left-corners-rtl.gif
│ │ ├── window-header-default-collapsed-left-corners.gif
│ │ ├── window-header-default-collapsed-left-sides.gif
│ │ ├── window-header-default-collapsed-right-corners-rtl.gif
│ │ ├── window-header-default-collapsed-right-corners.gif
│ │ ├── window-header-default-collapsed-right-sides.gif
│ │ ├── window-header-default-collapsed-top-corners.gif
│ │ ├── window-header-default-collapsed-top-sides.gif
│ │ ├── window-header-default-left-corners-rtl.gif
│ │ ├── window-header-default-left-corners.gif
│ │ ├── window-header-default-left-sides.gif
│ │ ├── window-header-default-right-corners-rtl.gif
│ │ ├── window-header-default-right-corners.gif
│ │ ├── window-header-default-right-sides.gif
│ │ ├── window-header-default-top-corners.gif
│ │ └── window-header-default-top-sides.gif
│ ├── Images
│ │ ├── background.jpg
│ │ ├── favicon.ico
│ │ ├── fid
│ │ │ ├── default.png
│ │ │ ├── fid-8993.png
│ │ │ ├── fid-8994.png
│ │ │ ├── fid-8995.png
│ │ │ ├── fid-8996.png
│ │ │ ├── fid-8997.png
│ │ │ ├── fid-8998.png
│ │ │ ├── fid-8999.png
│ │ │ ├── fid-9993.png
│ │ │ ├── fid-9994.png
│ │ │ ├── fid-9995.png
│ │ │ ├── fid-9996.png
│ │ │ ├── fid-9997.png
│ │ │ ├── fid-9999.png
│ │ │ ├── fid1001.png
│ │ │ ├── fid1002.png
│ │ │ ├── fid1003.png
│ │ │ ├── fid1004.png
│ │ │ ├── fid1007.png
│ │ │ ├── fid2000.png
│ │ │ ├── fid2001.png
│ │ │ ├── fid2002.png
│ │ │ ├── fid2003.png
│ │ │ ├── fid2004.png
│ │ │ ├── fid2005.png
│ │ │ ├── fid2006.png
│ │ │ ├── fid2007.png
│ │ │ ├── fid2008.png
│ │ │ ├── fid2009.png
│ │ │ ├── fid2010.png
│ │ │ ├── fid2011.png
│ │ │ ├── fid2012.png
│ │ │ ├── fid2013.png
│ │ │ ├── fid2014.png
│ │ │ ├── fid2015.png
│ │ │ ├── fid2016.png
│ │ │ ├── fid2017.png
│ │ │ ├── fid2018.png
│ │ │ ├── fid2019.png
│ │ │ ├── fid2020.png
│ │ │ ├── fid2021.png
│ │ │ ├── fid2022.png
│ │ │ ├── fid2023.png
│ │ │ ├── fid2024.png
│ │ │ ├── fid2025.png
│ │ │ ├── fid2026.png
│ │ │ ├── fid2027.png
│ │ │ ├── fid2028.png
│ │ │ ├── fid2029.png
│ │ │ ├── fid3001.png
│ │ │ ├── fid4001.png
│ │ │ ├── fid5001.png
│ │ │ └── fid6001.png
│ │ ├── icons
│ │ │ ├── add.png
│ │ │ ├── add_detail.png
│ │ │ ├── barcode.png
│ │ │ ├── cancel.png
│ │ │ ├── cancel_confirm.png
│ │ │ ├── change_password.png
│ │ │ ├── commit.png
│ │ │ ├── database.png
│ │ │ ├── delete.png
│ │ │ ├── delete_detail.png
│ │ │ ├── edit.png
│ │ │ ├── edit_dataorg.png
│ │ │ ├── edit_detail.png
│ │ │ ├── excel_export.png
│ │ │ ├── excel_import.png
│ │ │ ├── exit.png
│ │ │ ├── gen_bill.png
│ │ │ ├── help.png
│ │ │ ├── ok.png
│ │ │ ├── pdf.png
│ │ │ ├── refresh.png
│ │ │ ├── save.png
│ │ │ ├── toolbox.png
│ │ │ ├── user_add.png
│ │ │ ├── user_delete.png
│ │ │ ├── user_edit.png
│ │ │ └── view.png
│ │ ├── loader.gif
│ │ ├── login.png
│ │ ├── portal_inventory.png
│ │ ├── portal_money.png
│ │ ├── portal_purchase.png
│ │ ├── portal_sale.png
│ │ └── s.gif
│ ├── Scripts
│ │ └── PSI
│ │ ├── About
│ │ │ └── MainForm.js
│ │ ├── App.js
│ │ ├── Bill
│ │ │ ├── ICViewForm.js
│ │ │ ├── ITViewForm.js
│ │ │ ├── PRViewForm.js
│ │ │ ├── PWViewForm.js
│ │ │ ├── SRViewForm.js
│ │ │ └── WSViewForm.js
│ │ ├── BizConfig
│ │ │ ├── EditForm.js
│ │ │ └── MainForm.js
│ │ ├── Bizlog
│ │ │ └── MainForm.js
│ │ ├── Const.js
│ │ ├── Customer
│ │ │ ├── CategoryEditForm.js
│ │ │ ├── CustomerEditForm.js
│ │ │ ├── CustomerField.js
│ │ │ ├── CustomerImportForm.js
│ │ │ └── MainForm.js
│ │ ├── Funds
│ │ │ ├── AddPrePaymentForm.js
│ │ │ ├── AddPreReceivingForm.js
│ │ │ ├── CashMainForm.js
│ │ │ ├── PayMainForm.js
│ │ │ ├── PaymentEditForm.js
│ │ │ ├── PrePaymentMainForm.js
│ │ │ ├── PreReceivingMainForm.js
│ │ │ ├── ReturnPrePaymentForm.js
│ │ │ ├── ReturnPreReceivingForm.js
│ │ │ ├── RvMainForm.js
│ │ │ └── RvRecordEditForm.js
│ │ ├── Goods
│ │ │ ├── BrandEditForm.js
│ │ │ ├── BrandMainForm.js
│ │ │ ├── CategoryEditForm.js
│ │ │ ├── GoodsBrandField.js
│ │ │ ├── GoodsCategoryField.js
│ │ │ ├── GoodsEditForm.js
│ │ │ ├── GoodsField.js
│ │ │ ├── GoodsImportForm.js
│ │ │ ├── GoodsParentCategoryField.js
│ │ │ ├── GoodsWithPurchasePriceField.js
│ │ │ ├── GoodsWithSalePriceField.js
│ │ │ ├── MainForm.js
│ │ │ ├── ParentBrandEditor.js
│ │ │ ├── SafetyInventoryEditForm.js
│ │ │ ├── UnitEditForm.js
│ │ │ └── UnitMainForm.js
│ │ ├── Home
│ │ │ └── MainForm.js
│ │ ├── InvCheck
│ │ │ ├── ICEditForm.js
│ │ │ └── InvCheckMainForm.js
│ │ ├── InvTransfer
│ │ │ ├── ITEditForm.js
│ │ │ └── InvTransferMainForm.js
│ │ ├── Inventory
│ │ │ ├── InitInventoryEditForm.js
│ │ │ ├── InitInventoryMainForm.js
│ │ │ └── InvQueryMainForm.js
│ │ ├── MsgBox.js
│ │ ├── Permission
│ │ │ ├── EditForm.js
│ │ │ ├── MainForm.js
│ │ │ ├── SelectDataOrgForm.js
│ │ │ ├── SelectPermissionForm.js
│ │ │ └── SelectUserForm.js
│ │ ├── Purchase
│ │ │ ├── PWEditForm.js
│ │ │ └── PWMainForm.js
│ │ ├── PurchaseOrder
│ │ │ ├── POEditForm.js
│ │ │ └── POMainForm.js
│ │ ├── PurchaseRej
│ │ │ ├── PREditForm.js
│ │ │ ├── PRMainForm.js
│ │ │ └── PRSelectPWBillForm.js
│ │ ├── Report
│ │ │ ├── InventoryUpperForm.js
│ │ │ ├── PayablesAgeForm.js
│ │ │ ├── ReceivablesAgeForm.js
│ │ │ ├── SafetyInventoryForm.js
│ │ │ ├── SaleDayByBizuserForm.js
│ │ │ ├── SaleDayByCustomerForm.js
│ │ │ ├── SaleDayByGoodsForm.js
│ │ │ ├── SaleDayByWarehouseForm.js
│ │ │ ├── SaleMonthByBizuserForm.js
│ │ │ ├── SaleMonthByCustomerForm.js
│ │ │ ├── SaleMonthByGoodsForm.js
│ │ │ └── SaleMonthByWarehouseForm.js
│ │ ├── Sale
│ │ │ ├── SREditForm.js
│ │ │ ├── SRMainForm.js
│ │ │ ├── SRSelectWSBillForm.js
│ │ │ ├── WSEditForm.js
│ │ │ ├── WSExportForm.js
│ │ │ ├── WSImportForm.js
│ │ │ └── WSMainForm.js
│ │ ├── SaleOrder
│ │ │ ├── SOEditForm.js
│ │ │ └── SOMainForm.js
│ │ ├── Supplier
│ │ │ ├── CategoryEditForm.js
│ │ │ ├── MainForm.js
│ │ │ ├── SupplierEditForm.js
│ │ │ └── SupplierField.js
│ │ ├── UX
│ │ │ └── CellEditing.js
│ │ ├── User
│ │ │ ├── ChangeMyPasswordForm.js
│ │ │ ├── ChangeUserPasswordForm.js
│ │ │ ├── LoginForm.js
│ │ │ ├── MainForm.js
│ │ │ ├── OrgEditForm.js
│ │ │ ├── OrgEditor.js
│ │ │ ├── OrgField.js
│ │ │ ├── OrgWithDataOrgField.js
│ │ │ ├── ParentOrgEditor.js
│ │ │ ├── SelectUserDataOrg.js
│ │ │ ├── UserEditForm.js
│ │ │ └── UserField.js
│ │ └── Warehouse
│ │ ├── EditDataOrgForm.js
│ │ ├── EditForm.js
│ │ ├── MainForm.js
│ │ └── WarehouseField.js
│ ├── index.html
│ └── mui
│ ├── css
│ │ ├── mui.min.css
│ │ └── style.css
│ ├── fonts
│ │ └── mui.ttf
│ └── js
│ ├── app.js
│ ├── jquery-2.1.4.min.js
│ └── mui.min.js
├── ThinkPHP
│ ├── Common
│ │ └── functions.php
│ ├── Conf
│ │ ├── convention.php
│ │ └── debug.php
│ ├── LICENSE.txt
│ ├── Lang
│ │ ├── en-us.php
│ │ ├── pt-br.php
│ │ ├── zh-cn.php
│ │ └── zh-tw.php
│ ├── Library
│ │ ├── Behavior
│ │ │ ├── AgentCheckBehavior.class.php
│ │ │ ├── BorisBehavior.class.php
│ │ │ ├── BrowserCheckBehavior.class.php
│ │ │ ├── BuildLiteBehavior.class.php
│ │ │ ├── CheckActionRouteBehavior.class.php
│ │ │ ├── CheckLangBehavior.class.php
│ │ │ ├── ChromeShowPageTraceBehavior.class.php
│ │ │ ├── ContentReplaceBehavior.class.php
│ │ │ ├── CronRunBehavior.class.php
│ │ │ ├── FireShowPageTraceBehavior.class.php
│ │ │ ├── ParseTemplateBehavior.class.php
│ │ │ ├── ReadHtmlCacheBehavior.class.php
│ │ │ ├── RobotCheckBehavior.class.php
│ │ │ ├── ShowPageTraceBehavior.class.php
│ │ │ ├── ShowRuntimeBehavior.class.php
│ │ │ ├── TokenBuildBehavior.class.php
│ │ │ ├── UpgradeNoticeBehavior.class.php
│ │ │ └── WriteHtmlCacheBehavior.class.php
│ │ ├── Org
│ │ │ ├── Net
│ │ │ │ ├── Http.class.php
│ │ │ │ └── IpLocation.class.php
│ │ │ └── Util
│ │ │ ├── ArrayList.class.php
│ │ │ ├── CodeSwitch.class.php
│ │ │ ├── Date.class.php
│ │ │ ├── Rbac.class.php
│ │ │ ├── Stack.class.php
│ │ │ └── String.class.php
│ │ ├── Think
│ │ │ ├── App.class.php
│ │ │ ├── Auth.class.php
│ │ │ ├── Behavior.class.php
│ │ │ ├── Build.class.php
│ │ │ ├── Cache
│ │ │ │ └── Driver
│ │ │ │ ├── Apachenote.class.php
│ │ │ │ ├── Apc.class.php
│ │ │ │ ├── Db.class.php
│ │ │ │ ├── Eaccelerator.class.php
│ │ │ │ ├── File.class.php
│ │ │ │ ├── Memcache.class.php
│ │ │ │ ├── Memcached.class.php
│ │ │ │ ├── Memcachesae.class.php
│ │ │ │ ├── Redis.class.php
│ │ │ │ ├── Shmop.class.php
│ │ │ │ ├── Sqlite.class.php
│ │ │ │ ├── Wincache.class.php
│ │ │ │ └── Xcache.class.php
│ │ │ ├── Cache.class.php
│ │ │ ├── Controller
│ │ │ │ ├── HproseController.class.php
│ │ │ │ ├── JsonRpcController.class.php
│ │ │ │ ├── RestController.class.php
│ │ │ │ ├── RpcController.class.php
│ │ │ │ └── YarController.class.php
│ │ │ ├── Controller.class.php
│ │ │ ├── Crypt
│ │ │ │ └── Driver
│ │ │ │ ├── Base64.class.php
│ │ │ │ ├── Crypt.class.php
│ │ │ │ ├── Des.class.php
│ │ │ │ ├── Think.class.php
│ │ │ │ └── Xxtea.class.php
│ │ │ ├── Crypt.class.php
│ │ │ ├── Db
│ │ │ │ ├── Driver
│ │ │ │ │ ├── Firebird.class.php
│ │ │ │ │ ├── Mongo.class.php
│ │ │ │ │ ├── Mysql.class.php
│ │ │ │ │ ├── Oracle.class.php
│ │ │ │ │ ├── Pgsql.class.php
│ │ │ │ │ ├── Sqlite.class.php
│ │ │ │ │ └── Sqlsrv.class.php
│ │ │ │ ├── Driver.class.php
│ │ │ │ └── Lite.class.php
│ │ │ ├── Db.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ ├── Exception.class.php
│ │ │ ├── Hook.class.php
│ │ │ ├── Image
│ │ │ │ └── Driver
│ │ │ │ ├── GIF.class.php
│ │ │ │ ├── Gd.class.php
│ │ │ │ └── Imagick.class.php
│ │ │ ├── Image.class.php
│ │ │ ├── Log
│ │ │ │ └── Driver
│ │ │ │ ├── File.class.php
│ │ │ │ └── Sae.class.php
│ │ │ ├── Log.class.php
│ │ │ ├── Model
│ │ │ │ ├── AdvModel.class.php
│ │ │ │ ├── MergeModel.class.php
│ │ │ │ ├── MongoModel.class.php
│ │ │ │ ├── RelationModel.class.php
│ │ │ │ └── ViewModel.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── Page.class.php
│ │ │ ├── Route.class.php
│ │ │ ├── Session
│ │ │ │ └── Driver
│ │ │ │ ├── Db.class.php
│ │ │ │ └── Memcache.class.php
│ │ │ ├── Storage
│ │ │ │ └── Driver
│ │ │ │ ├── File.class.php
│ │ │ │ └── Sae.class.php
│ │ │ ├── Storage.class.php
│ │ │ ├── Template
│ │ │ │ ├── Driver
│ │ │ │ │ ├── Ease.class.php
│ │ │ │ │ ├── Lite.class.php
│ │ │ │ │ ├── Mobile.class.php
│ │ │ │ │ ├── Smart.class.php
│ │ │ │ │ └── Smarty.class.php
│ │ │ │ ├── TagLib
│ │ │ │ │ ├── Cx.class.php
│ │ │ │ │ └── Html.class.php
│ │ │ │ └── TagLib.class.php
│ │ │ ├── Template.class.php
│ │ │ ├── Think.class.php
│ │ │ ├── Upload
│ │ │ │ └── Driver
│ │ │ │ ├── Bcs
│ │ │ │ │ ├── bcs.class.php
│ │ │ │ │ ├── mimetypes.class.php
│ │ │ │ │ └── requestcore.class.php
│ │ │ │ ├── Bcs.class.php
│ │ │ │ ├── Ftp.class.php
│ │ │ │ ├── Local.class.php
│ │ │ │ ├── Qiniu
│ │ │ │ │ └── QiniuStorage.class.php
│ │ │ │ ├── Qiniu.class.php
│ │ │ │ ├── Sae.class.php
│ │ │ │ └── Upyun.class.php
│ │ │ ├── Upload.class.php
│ │ │ ├── Verify
│ │ │ │ ├── bgs
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 2.jpg
│ │ │ │ │ ├── 3.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.jpg
│ │ │ │ │ ├── 6.jpg
│ │ │ │ │ ├── 7.jpg
│ │ │ │ │ └── 8.jpg
│ │ │ │ └── ttfs
│ │ │ │ ├── 1.ttf
│ │ │ │ ├── 2.ttf
│ │ │ │ ├── 3.ttf
│ │ │ │ ├── 4.ttf
│ │ │ │ ├── 5.ttf
│ │ │ │ └── 6.ttf
│ │ │ ├── Verify.class.php
│ │ │ └── View.class.php
│ │ └── Vendor
│ │ ├── Boris
│ │ │ ├── Boris.php
│ │ │ ├── CLIOptionsHandler.php
│ │ │ ├── ColoredInspector.php
│ │ │ ├── Config.php
│ │ │ ├── DumpInspector.php
│ │ │ ├── EvalWorker.php
│ │ │ ├── ExportInspector.php
│ │ │ ├── Inspector.php
│ │ │ ├── ReadlineClient.php
│ │ │ └── ShallowParser.php
│ │ ├── EaseTemplate
│ │ │ ├── template.core.php
│ │ │ └── template.ease.php
│ │ ├── Hprose
│ │ │ ├── HproseClassManager.php
│ │ │ ├── HproseClient.php
│ │ │ ├── HproseCommon.php
│ │ │ ├── HproseFormatter.php
│ │ │ ├── HproseHttpClient.php
│ │ │ ├── HproseHttpServer.php
│ │ │ ├── HproseIO.php
│ │ │ ├── HproseIOStream.php
│ │ │ ├── HproseReader.php
│ │ │ ├── HproseTags.php
│ │ │ └── HproseWriter.php
│ │ ├── README.txt
│ │ ├── SmartTemplate
│ │ │ ├── class.smarttemplate.php
│ │ │ ├── class.smarttemplatedebugger.php
│ │ │ └── class.smarttemplateparser.php
│ │ ├── Smarty
│ │ │ ├── Smarty.class.php
│ │ │ ├── SmartyBC.class.php
│ │ │ ├── debug.tpl
│ │ │ ├── plugins
│ │ │ │ ├── block.textformat.php
│ │ │ │ ├── function.counter.php
│ │ │ │ ├── function.cycle.php
│ │ │ │ ├── function.fetch.php
│ │ │ │ ├── function.html_checkboxes.php
│ │ │ │ ├── function.html_image.php
│ │ │ │ ├── function.html_options.php
│ │ │ │ ├── function.html_radios.php
│ │ │ │ ├── function.html_select_date.php
│ │ │ │ ├── function.html_select_time.php
│ │ │ │ ├── function.html_table.php
│ │ │ │ ├── function.mailto.php
│ │ │ │ ├── function.math.php
│ │ │ │ ├── modifier.capitalize.php
│ │ │ │ ├── modifier.date_format.php
│ │ │ │ ├── modifier.debug_print_var.php
│ │ │ │ ├── modifier.escape.php
│ │ │ │ ├── modifier.regex_replace.php
│ │ │ │ ├── modifier.replace.php
│ │ │ │ ├── modifier.spacify.php
│ │ │ │ ├── modifier.truncate.php
│ │ │ │ ├── modifiercompiler.cat.php
│ │ │ │ ├── modifiercompiler.count_characters.php
│ │ │ │ ├── modifiercompiler.count_paragraphs.php
│ │ │ │ ├── modifiercompiler.count_sentences.php
│ │ │ │ ├── modifiercompiler.count_words.php
│ │ │ │ ├── modifiercompiler.default.php
│ │ │ │ ├── modifiercompiler.escape.php
│ │ │ │ ├── modifiercompiler.from_charset.php
│ │ │ │ ├── modifiercompiler.indent.php
│ │ │ │ ├── modifiercompiler.lower.php
│ │ │ │ ├── modifiercompiler.noprint.php
│ │ │ │ ├── modifiercompiler.string_format.php
│ │ │ │ ├── modifiercompiler.strip.php
│ │ │ │ ├── modifiercompiler.strip_tags.php
│ │ │ │ ├── modifiercompiler.to_charset.php
│ │ │ │ ├── modifiercompiler.unescape.php
│ │ │ │ ├── modifiercompiler.upper.php
│ │ │ │ ├── modifiercompiler.wordwrap.php
│ │ │ │ ├── outputfilter.trimwhitespace.php
│ │ │ │ ├── shared.escape_special_chars.php
│ │ │ │ ├── shared.literal_compiler_param.php
│ │ │ │ ├── shared.make_timestamp.php
│ │ │ │ ├── shared.mb_str_replace.php
│ │ │ │ ├── shared.mb_unicode.php
│ │ │ │ ├── shared.mb_wordwrap.php
│ │ │ │ └── variablefilter.htmlspecialchars.php
│ │ │ └── sysplugins
│ │ │ ├── smarty_cacheresource.php
│ │ │ ├── smarty_cacheresource_custom.php
│ │ │ ├── smarty_cacheresource_keyvaluestore.php
│ │ │ ├── smarty_config_source.php
│ │ │ ├── smarty_internal_cacheresource_file.php
│ │ │ ├── smarty_internal_compile_append.php
│ │ │ ├── smarty_internal_compile_assign.php
│ │ │ ├── smarty_internal_compile_block.php
│ │ │ ├── smarty_internal_compile_break.php
│ │ │ ├── smarty_internal_compile_call.php
│ │ │ ├── smarty_internal_compile_capture.php
│ │ │ ├── smarty_internal_compile_config_load.php
│ │ │ ├── smarty_internal_compile_continue.php
│ │ │ ├── smarty_internal_compile_debug.php
│ │ │ ├── smarty_internal_compile_eval.php
│ │ │ ├── smarty_internal_compile_extends.php
│ │ │ ├── smarty_internal_compile_for.php
│ │ │ ├── smarty_internal_compile_foreach.php
│ │ │ ├── smarty_internal_compile_function.php
│ │ │ ├── smarty_internal_compile_if.php
│ │ │ ├── smarty_internal_compile_include.php
│ │ │ ├── smarty_internal_compile_include_php.php
│ │ │ ├── smarty_internal_compile_insert.php
│ │ │ ├── smarty_internal_compile_ldelim.php
│ │ │ ├── smarty_internal_compile_nocache.php
│ │ │ ├── smarty_internal_compile_private_block_plugin.php
│ │ │ ├── smarty_internal_compile_private_function_plugin.php
│ │ │ ├── smarty_internal_compile_private_modifier.php
│ │ │ ├── smarty_internal_compile_private_object_block_function.php
│ │ │ ├── smarty_internal_compile_private_object_function.php
│ │ │ ├── smarty_internal_compile_private_print_expression.php
│ │ │ ├── smarty_internal_compile_private_registered_block.php
│ │ │ ├── smarty_internal_compile_private_registered_function.php
│ │ │ ├── smarty_internal_compile_private_special_variable.php
│ │ │ ├── smarty_internal_compile_rdelim.php
│ │ │ ├── smarty_internal_compile_section.php
│ │ │ ├── smarty_internal_compile_setfilter.php
│ │ │ ├── smarty_internal_compile_while.php
│ │ │ ├── smarty_internal_compilebase.php
│ │ │ ├── smarty_internal_config.php
│ │ │ ├── smarty_internal_config_file_compiler.php
│ │ │ ├── smarty_internal_configfilelexer.php
│ │ │ ├── smarty_internal_configfileparser.php
│ │ │ ├── smarty_internal_data.php
│ │ │ ├── smarty_internal_debug.php
│ │ │ ├── smarty_internal_filter_handler.php
│ │ │ ├── smarty_internal_function_call_handler.php
│ │ │ ├── smarty_internal_get_include_path.php
│ │ │ ├── smarty_internal_nocache_insert.php
│ │ │ ├── smarty_internal_parsetree.php
│ │ │ ├── smarty_internal_resource_eval.php
│ │ │ ├── smarty_internal_resource_extends.php
│ │ │ ├── smarty_internal_resource_file.php
│ │ │ ├── smarty_internal_resource_php.php
│ │ │ ├── smarty_internal_resource_registered.php
│ │ │ ├── smarty_internal_resource_stream.php
│ │ │ ├── smarty_internal_resource_string.php
│ │ │ ├── smarty_internal_smartytemplatecompiler.php
│ │ │ ├── smarty_internal_template.php
│ │ │ ├── smarty_internal_templatebase.php
│ │ │ ├── smarty_internal_templatecompilerbase.php
│ │ │ ├── smarty_internal_templatelexer.php
│ │ │ ├── smarty_internal_templateparser.php
│ │ │ ├── smarty_internal_utility.php
│ │ │ ├── smarty_internal_write_file.php
│ │ │ ├── smarty_resource.php
│ │ │ ├── smarty_resource_custom.php
│ │ │ ├── smarty_resource_recompiled.php
│ │ │ ├── smarty_resource_uncompiled.php
│ │ │ └── smarty_security.php
│ │ ├── TemplateLite
│ │ │ ├── class.compiler.php
│ │ │ ├── class.config.php
│ │ │ ├── class.template.php
│ │ │ └── internal
│ │ │ ├── compile.compile_config.php
│ │ │ ├── compile.compile_custom_block.php
│ │ │ ├── compile.compile_custom_function.php
│ │ │ ├── compile.compile_if.php
│ │ │ ├── compile.generate_compiler_debug_output.php
│ │ │ ├── compile.include.php
│ │ │ ├── compile.parse_is_expr.php
│ │ │ ├── compile.section_start.php
│ │ │ ├── debug.tpl
│ │ │ ├── template.build_dir.php
│ │ │ ├── template.config_loader.php
│ │ │ ├── template.destroy_dir.php
│ │ │ ├── template.fetch_compile_include.php
│ │ │ └── template.generate_debug_output.php
│ │ ├── jsonRPC
│ │ │ ├── jsonRPCClient.php
│ │ │ └── jsonRPCServer.php
│ │ ├── phpRPC
│ │ │ ├── bigint.php
│ │ │ ├── compat.php
│ │ │ ├── dhparams
│ │ │ │ ├── 1024.dhp
│ │ │ │ ├── 128.dhp
│ │ │ │ ├── 1536.dhp
│ │ │ │ ├── 160.dhp
│ │ │ │ ├── 192.dhp
│ │ │ │ ├── 2048.dhp
│ │ │ │ ├── 256.dhp
│ │ │ │ ├── 3072.dhp
│ │ │ │ ├── 4096.dhp
│ │ │ │ ├── 512.dhp
│ │ │ │ ├── 768.dhp
│ │ │ │ └── 96.dhp
│ │ │ ├── dhparams.php
│ │ │ ├── pecl
│ │ │ │ └── xxtea
│ │ │ │ ├── CREDITS
│ │ │ │ ├── INSTALL
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README
│ │ │ │ ├── config.m4
│ │ │ │ ├── config.w32
│ │ │ │ ├── php_xxtea.c
│ │ │ │ ├── php_xxtea.dsp
│ │ │ │ ├── php_xxtea.h
│ │ │ │ ├── php_xxtea.sln
│ │ │ │ ├── php_xxtea.vcproj
│ │ │ │ ├── test
│ │ │ │ │ └── test.php
│ │ │ │ ├── xxtea.c
│ │ │ │ └── xxtea.h
│ │ │ ├── phprpc_client.php
│ │ │ ├── phprpc_date.php
│ │ │ ├── phprpc_server.php
│ │ │ └── xxtea.php
│ │ └── spyc
│ │ ├── COPYING
│ │ ├── README.md
│ │ ├── Spyc.php
│ │ ├── composer.json
│ │ ├── examples
│ │ │ ├── yaml-dump.php
│ │ │ └── yaml-load.php
│ │ ├── php4
│ │ │ ├── 5to4.php
│ │ │ ├── spyc.php4
│ │ │ └── test.php4
│ │ ├── spyc.yaml
│ │ └── tests
│ │ ├── DumpTest.php
│ │ ├── IndentTest.php
│ │ ├── ParseTest.php
│ │ ├── RoundTripTest.php
│ │ ├── comments.yaml
│ │ ├── failing1.yaml
│ │ ├── indent_1.yaml
│ │ └── quotes.yaml
│ ├── Mode
│ │ ├── Api
│ │ │ ├── App.class.php
│ │ │ ├── Controller.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ └── functions.php
│ │ ├── Lite
│ │ │ ├── App.class.php
│ │ │ ├── Controller.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── View.class.php
│ │ │ ├── convention.php
│ │ │ └── functions.php
│ │ ├── Sae
│ │ │ └── convention.php
│ │ ├── api.php
│ │ ├── common.php
│ │ ├── lite.php
│ │ └── sae.php
│ ├── ThinkPHP.php
│ ├── Tpl
│ │ ├── dispatch_jump.tpl
│ │ ├── page_trace.tpl
│ │ └── think_exception.tpl
│ └── logo.png
├── Uploads
│ ├── Customer
│ │ └── customerModelFile.xls
│ └── Goods
│ └── goodsModelFile.xls
└── index.php
247 directories, 1496 files
评论