在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 最新仿金蝶电商ERP进销存系统v1修复版

最新仿金蝶电商ERP进销存系统v1修复版

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:21.24M
  • 下载次数:54
  • 浏览次数:486
  • 发布时间:2022-07-07
  • 实例类别:PHP语言基础
  • 发 布 人:starmiss
  • 文件格式:.zip
  • 所需积分:1

实例介绍

【实例简介】最新仿金蝶电商ERP进销存系统v1修复版
【实例截图】

from clipboard
【核心代码】

.
├── application
│   ├── cache
│   │   └── index.html
│   ├── config
│   │   ├── autoload.php
│   │   ├── config.php
│   │   ├── constants.php
│   │   ├── database.php
│   │   ├── doctypes.php
│   │   ├── foreign_chars.php
│   │   ├── hooks.php
│   │   ├── index.html
│   │   ├── migration.php
│   │   ├── mimes.php
│   │   ├── profiler.php
│   │   ├── routes.php
│   │   ├── smileys.php
│   │   └── user_agents.php
│   ├── controllers
│   │   ├── basedata
│   │   │   ├── assist.php
│   │   │   ├── assistSku.php
│   │   │   ├── assistType.php
│   │   │   ├── contact.php
│   │   │   ├── customer.php
│   │   │   ├── deliveryAddr.php
│   │   │   ├── employee.php
│   │   │   ├── import.php
│   │   │   ├── inventory.php
│   │   │   ├── invlocation.php
│   │   │   ├── log.php
│   │   │   ├── resultInfo.php
│   │   │   ├── settAcct.php
│   │   │   ├── supplier.php
│   │   │   ├── systemProfile.php
│   │   │   ├── unit.php
│   │   │   ├── unitType.php
│   │   │   └── userSetting.php
│   │   ├── home.php
│   │   ├── inventory.php
│   │   ├── login.php
│   │   ├── prints.php
│   │   ├── report.php
│   │   ├── right.php
│   │   ├── sales.php
│   │   ├── scm
│   │   │   ├── invOi.php
│   │   │   ├── invPu.php
│   │   │   ├── invSa.php
│   │   │   ├── invTf.php
│   │   │   ├── ori.php
│   │   │   ├── payment.php
│   │   │   ├── pdImport.php
│   │   │   └── receipt.php
│   │   ├── service.php
│   │   ├── settings.php
│   │   └── storage.php
│   ├── core
│   │   ├── MY_Loader.php
│   │   ├── MY_URI.php
│   │   └── index.html
│   ├── errors
│   │   ├── error_404.php
│   │   ├── error_db.php
│   │   ├── error_general.php
│   │   ├── error_php.php
│   │   └── index.html
│   ├── helpers
│   │   └── fun_helper.php
│   ├── hooks
│   │   └── index.html
│   ├── index.html
│   ├── language
│   │   ├── china
│   │   │   ├── admin_lang.php
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── front_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   ├── english
│   │   │   ├── admin_lang.php
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── front_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   └── taiwan
│   ├── libraries
│   │   ├── UploadHandler.php
│   │   ├── excel
│   │   │   ├── excel
│   │   │   │   └── oleread.php
│   │   │   └── excel.php
│   │   ├── html2pdf
│   │   │   ├── _class
│   │   │   │   ├── exception.class.php
│   │   │   │   ├── locale.class.php
│   │   │   │   ├── myPdf.class.php
│   │   │   │   ├── parsingCss.class.php
│   │   │   │   ├── parsingHtml.class.php
│   │   │   │   ├── tcpdfConfig.php
│   │   │   │   └── tcpdfConfig1.php
│   │   │   ├── _tcpdf_5.0.002
│   │   │   │   ├── 2dbarcodes.php
│   │   │   │   ├── CHANGELOG.TXT
│   │   │   │   ├── LICENSE.TXT
│   │   │   │   ├── README.TXT
│   │   │   │   ├── barcodes.php
│   │   │   │   ├── cache
│   │   │   │   │   ├── chapter_demo_1.txt
│   │   │   │   │   ├── chapter_demo_2.txt
│   │   │   │   │   ├── table_data_demo.txt
│   │   │   │   │   └── utf8test.txt
│   │   │   │   ├── config
│   │   │   │   │   ├── lang
│   │   │   │   │   │   ├── bra.php
│   │   │   │   │   │   ├── eng.php
│   │   │   │   │   │   ├── ger.php
│   │   │   │   │   │   └── ita.php
│   │   │   │   │   ├── tcpdf_config.php
│   │   │   │   │   └── tcpdf_config_alt.php
│   │   │   │   ├── doc
│   │   │   │   │   └── read_me.txt
│   │   │   │   ├── examples
│   │   │   │   │   └── read_me.txt
│   │   │   │   ├── fonts
│   │   │   │   │   ├── README.TXT
│   │   │   │   │   ├── ZarBold.ctg.z
│   │   │   │   │   ├── ZarBold.z
│   │   │   │   │   ├── ae_fonts_2.0
│   │   │   │   │   │   ├── COPYING
│   │   │   │   │   │   ├── ChangeLog
│   │   │   │   │   │   ├── ChangeLog.9745.BAK
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── aealarabiya.ctg.z
│   │   │   │   │   ├── aealarabiya.php
│   │   │   │   │   ├── aealarabiya.z
│   │   │   │   │   ├── aefurat.ctg.z
│   │   │   │   │   ├── aefurat.php
│   │   │   │   │   ├── aefurat.z
│   │   │   │   │   ├── almohanad.ctg.z
│   │   │   │   │   ├── almohanad.php
│   │   │   │   │   ├── almohanad.z
│   │   │   │   │   ├── arialunicid0.php
│   │   │   │   │   ├── cid0cs.php
│   │   │   │   │   ├── cid0ct.php
│   │   │   │   │   ├── cid0jp.php
│   │   │   │   │   ├── cid0kr.php
│   │   │   │   │   ├── courier.php
│   │   │   │   │   ├── courierb.php
│   │   │   │   │   ├── courierbi.php
│   │   │   │   │   ├── courieri.php
│   │   │   │   │   ├── dejavu-fonts-ttf-2.30
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── BUGS
│   │   │   │   │   │   ├── LICENSE
│   │   │   │   │   │   ├── NEWS
│   │   │   │   │   │   ├── README
│   │   │   │   │   │   ├── langcover.txt
│   │   │   │   │   │   ├── status.txt
│   │   │   │   │   │   └── unicover.txt
│   │   │   │   │   ├── dejavu-fonts-ttf-2.33
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── BUGS
│   │   │   │   │   │   ├── LICENSE
│   │   │   │   │   │   ├── NEWS
│   │   │   │   │   │   ├── README
│   │   │   │   │   │   ├── langcover.txt
│   │   │   │   │   │   ├── status.txt
│   │   │   │   │   │   └── unicover.txt
│   │   │   │   │   ├── dejavu-fonts-ttf-2.34
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── BUGS
│   │   │   │   │   │   ├── LICENSE
│   │   │   │   │   │   ├── NEWS
│   │   │   │   │   │   ├── README
│   │   │   │   │   │   ├── langcover.txt
│   │   │   │   │   │   ├── status.txt
│   │   │   │   │   │   └── unicover.txt
│   │   │   │   │   ├── dejavusans.ctg.z
│   │   │   │   │   ├── dejavusans.php
│   │   │   │   │   ├── dejavusans.z
│   │   │   │   │   ├── dejavusansb.ctg.z
│   │   │   │   │   ├── dejavusansb.php
│   │   │   │   │   ├── dejavusansb.z
│   │   │   │   │   ├── dejavusansbi.ctg.z
│   │   │   │   │   ├── dejavusansbi.php
│   │   │   │   │   ├── dejavusansbi.z
│   │   │   │   │   ├── dejavusanscondensed.ctg.z
│   │   │   │   │   ├── dejavusanscondensed.php
│   │   │   │   │   ├── dejavusanscondensed.z
│   │   │   │   │   ├── dejavusanscondensedb.ctg.z
│   │   │   │   │   ├── dejavusanscondensedb.php
│   │   │   │   │   ├── dejavusanscondensedb.z
│   │   │   │   │   ├── dejavusanscondensedbi.ctg.z
│   │   │   │   │   ├── dejavusanscondensedbi.php
│   │   │   │   │   ├── dejavusanscondensedbi.z
│   │   │   │   │   ├── dejavusanscondensedi.ctg.z
│   │   │   │   │   ├── dejavusanscondensedi.php
│   │   │   │   │   ├── dejavusanscondensedi.z
│   │   │   │   │   ├── dejavusansextralight.ctg.z
│   │   │   │   │   ├── dejavusansextralight.php
│   │   │   │   │   ├── dejavusansextralight.z
│   │   │   │   │   ├── dejavusansi.ctg.z
│   │   │   │   │   ├── dejavusansi.php
│   │   │   │   │   ├── dejavusansi.z
│   │   │   │   │   ├── dejavusansmono.ctg.z
│   │   │   │   │   ├── dejavusansmono.php
│   │   │   │   │   ├── dejavusansmono.z
│   │   │   │   │   ├── dejavusansmonob.ctg.z
│   │   │   │   │   ├── dejavusansmonob.php
│   │   │   │   │   ├── dejavusansmonob.z
│   │   │   │   │   ├── dejavusansmonobi.ctg.z
│   │   │   │   │   ├── dejavusansmonobi.php
│   │   │   │   │   ├── dejavusansmonobi.z
│   │   │   │   │   ├── dejavusansmonoi.ctg.z
│   │   │   │   │   ├── dejavusansmonoi.php
│   │   │   │   │   ├── dejavusansmonoi.z
│   │   │   │   │   ├── dejavuserif.ctg.z
│   │   │   │   │   ├── dejavuserif.php
│   │   │   │   │   ├── dejavuserif.z
│   │   │   │   │   ├── dejavuserifb.ctg.z
│   │   │   │   │   ├── dejavuserifb.php
│   │   │   │   │   ├── dejavuserifb.z
│   │   │   │   │   ├── dejavuserifbi.ctg.z
│   │   │   │   │   ├── dejavuserifbi.php
│   │   │   │   │   ├── dejavuserifbi.z
│   │   │   │   │   ├── dejavuserifcondensed.ctg.z
│   │   │   │   │   ├── dejavuserifcondensed.php
│   │   │   │   │   ├── dejavuserifcondensed.z
│   │   │   │   │   ├── dejavuserifcondensedb.ctg.z
│   │   │   │   │   ├── dejavuserifcondensedb.php
│   │   │   │   │   ├── dejavuserifcondensedb.z
│   │   │   │   │   ├── dejavuserifcondensedbi.ctg.z
│   │   │   │   │   ├── dejavuserifcondensedbi.php
│   │   │   │   │   ├── dejavuserifcondensedbi.z
│   │   │   │   │   ├── dejavuserifcondensedi.ctg.z
│   │   │   │   │   ├── dejavuserifcondensedi.php
│   │   │   │   │   ├── dejavuserifcondensedi.z
│   │   │   │   │   ├── dejavuserifi.ctg.z
│   │   │   │   │   ├── dejavuserifi.php
│   │   │   │   │   ├── dejavuserifi.z
│   │   │   │   │   ├── freefont-20090104
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── COPYING
│   │   │   │   │   │   ├── CREDITS
│   │   │   │   │   │   ├── ChangeLog
│   │   │   │   │   │   ├── INSTALL
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── freefont-20100919
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── COPYING
│   │   │   │   │   │   ├── CREDITS
│   │   │   │   │   │   ├── ChangeLog
│   │   │   │   │   │   ├── INSTALL
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── freefont-20120503
│   │   │   │   │   │   ├── AUTHORS
│   │   │   │   │   │   ├── COPYING
│   │   │   │   │   │   ├── CREDITS
│   │   │   │   │   │   ├── ChangeLog
│   │   │   │   │   │   ├── ChangeLog.10070.BAK
│   │   │   │   │   │   ├── INSTALL
│   │   │   │   │   │   ├── README
│   │   │   │   │   │   ├── TROUBLESHOOTING
│   │   │   │   │   │   └── USAGE
│   │   │   │   │   ├── freemono.ctg.z
│   │   │   │   │   ├── freemono.php
│   │   │   │   │   ├── freemono.z
│   │   │   │   │   ├── freemonob.ctg.z
│   │   │   │   │   ├── freemonob.php
│   │   │   │   │   ├── freemonob.z
│   │   │   │   │   ├── freemonobi.ctg.z
│   │   │   │   │   ├── freemonobi.php
│   │   │   │   │   ├── freemonobi.z
│   │   │   │   │   ├── freemonoi.ctg.z
│   │   │   │   │   ├── freemonoi.php
│   │   │   │   │   ├── freemonoi.z
│   │   │   │   │   ├── freesans.ctg.z
│   │   │   │   │   ├── freesans.php
│   │   │   │   │   ├── freesans.z
│   │   │   │   │   ├── freesansb.ctg.z
│   │   │   │   │   ├── freesansb.php
│   │   │   │   │   ├── freesansb.z
│   │   │   │   │   ├── freesansbi.ctg.z
│   │   │   │   │   ├── freesansbi.php
│   │   │   │   │   ├── freesansbi.z
│   │   │   │   │   ├── freesansi.ctg.z
│   │   │   │   │   ├── freesansi.php
│   │   │   │   │   ├── freesansi.z
│   │   │   │   │   ├── freeserif.ctg.z
│   │   │   │   │   ├── freeserif.php
│   │   │   │   │   ├── freeserif.z
│   │   │   │   │   ├── freeserifb.ctg.z
│   │   │   │   │   ├── freeserifb.php
│   │   │   │   │   ├── freeserifb.z
│   │   │   │   │   ├── freeserifbi.ctg.z
│   │   │   │   │   ├── freeserifbi.php
│   │   │   │   │   ├── freeserifbi.z
│   │   │   │   │   ├── freeserifi.ctg.z
│   │   │   │   │   ├── freeserifi.php
│   │   │   │   │   ├── freeserifi.z
│   │   │   │   │   ├── helvetica.php
│   │   │   │   │   ├── helveticab.php
│   │   │   │   │   ├── helveticabi.php
│   │   │   │   │   ├── helveticai.php
│   │   │   │   │   ├── hysmyeongjostdmedium.php
│   │   │   │   │   ├── javiergb.php
│   │   │   │   │   ├── kozgopromedium.php
│   │   │   │   │   ├── kozminproregular.php
│   │   │   │   │   ├── msungstdlight.php
│   │   │   │   │   ├── pdfacourier.php
│   │   │   │   │   ├── pdfacourier.z
│   │   │   │   │   ├── pdfacourierb.php
│   │   │   │   │   ├── pdfacourierb.z
│   │   │   │   │   ├── pdfacourierbi.php
│   │   │   │   │   ├── pdfacourierbi.z
│   │   │   │   │   ├── pdfacourieri.php
│   │   │   │   │   ├── pdfacourieri.z
│   │   │   │   │   ├── pdfahelvetica.php
│   │   │   │   │   ├── pdfahelvetica.z
│   │   │   │   │   ├── pdfahelveticab.php
│   │   │   │   │   ├── pdfahelveticab.z
│   │   │   │   │   ├── pdfahelveticabi.php
│   │   │   │   │   ├── pdfahelveticabi.z
│   │   │   │   │   ├── pdfahelveticai.php
│   │   │   │   │   ├── pdfahelveticai.z
│   │   │   │   │   ├── pdfasymbol.php
│   │   │   │   │   ├── pdfasymbol.z
│   │   │   │   │   ├── pdfatimes.php
│   │   │   │   │   ├── pdfatimes.z
│   │   │   │   │   ├── pdfatimesb.php
│   │   │   │   │   ├── pdfatimesb.z
│   │   │   │   │   ├── pdfatimesbi.php
│   │   │   │   │   ├── pdfatimesbi.z
│   │   │   │   │   ├── pdfatimesi.php
│   │   │   │   │   ├── pdfatimesi.z
│   │   │   │   │   ├── pdfazapfdingbats.php
│   │   │   │   │   ├── pdfazapfdingbats.z
│   │   │   │   │   ├── stsongstdlight.php
│   │   │   │   │   ├── symbol.php
│   │   │   │   │   ├── times.php
│   │   │   │   │   ├── timesb.php
│   │   │   │   │   ├── timesbi.php
│   │   │   │   │   ├── timesi.php
│   │   │   │   │   ├── uni2cid_ac15.php
│   │   │   │   │   ├── uni2cid_ag15.php
│   │   │   │   │   ├── uni2cid_aj16.php
│   │   │   │   │   ├── uni2cid_ak12.php
│   │   │   │   │   ├── utils
│   │   │   │   │   │   ├── README.TXT
│   │   │   │   │   │   ├── enc
│   │   │   │   │   │   │   ├── cp1250.map
│   │   │   │   │   │   │   ├── cp1251.map
│   │   │   │   │   │   │   ├── cp1252.map
│   │   │   │   │   │   │   ├── cp1253.map
│   │   │   │   │   │   │   ├── cp1254.map
│   │   │   │   │   │   │   ├── cp1255.map
│   │   │   │   │   │   │   ├── cp1257.map
│   │   │   │   │   │   │   ├── cp1258.map
│   │   │   │   │   │   │   ├── cp874.map
│   │   │   │   │   │   │   ├── iso-8859-1.map
│   │   │   │   │   │   │   ├── iso-8859-11.map
│   │   │   │   │   │   │   ├── iso-8859-15.map
│   │   │   │   │   │   │   ├── iso-8859-16.map
│   │   │   │   │   │   │   ├── iso-8859-2.map
│   │   │   │   │   │   │   ├── iso-8859-4.map
│   │   │   │   │   │   │   ├── iso-8859-5.map
│   │   │   │   │   │   │   ├── iso-8859-7.map
│   │   │   │   │   │   │   ├── iso-8859-9.map
│   │   │   │   │   │   │   ├── koi8-r.map
│   │   │   │   │   │   │   └── koi8-u.map
│   │   │   │   │   │   ├── freetype6.dll
│   │   │   │   │   │   ├── makeallttffonts.php
│   │   │   │   │   │   ├── makefont.php
│   │   │   │   │   │   ├── pfm2afm
│   │   │   │   │   │   ├── pfm2afm.exe
│   │   │   │   │   │   ├── src
│   │   │   │   │   │   │   ├── pfm2afm-src.tar.gz
│   │   │   │   │   │   │   ├── readme.txt
│   │   │   │   │   │   │   └── ttf2ufm-src.tar.gz
│   │   │   │   │   │   ├── ttf2ufm
│   │   │   │   │   │   ├── ttf2ufm.exe
│   │   │   │   │   │   └── zlib1.dll
│   │   │   │   │   ├── zapfdingbats.php
│   │   │   │   │   └── zarbold.php
│   │   │   │   ├── htmlcolors.php
│   │   │   │   ├── images
│   │   │   │   │   └── read_me.txt
│   │   │   │   ├── qrcode.php
│   │   │   │   ├── tcpdf.crt
│   │   │   │   ├── tcpdf.fdf
│   │   │   │   ├── tcpdf.php
│   │   │   │   └── unicode_data.php
│   │   │   ├── html2pdf.php
│   │   │   ├── html2pdf1.php
│   │   │   └── locale
│   │   │       ├── ca.csv
│   │   │       ├── cs.csv
│   │   │       ├── da.csv
│   │   │       ├── de.csv
│   │   │       ├── en.csv
│   │   │       ├── es.csv
│   │   │       ├── fr.csv
│   │   │       ├── it.csv
│   │   │       ├── nl.csv
│   │   │       ├── pt.csv
│   │   │       └── tr.csv
│   │   ├── lib_cn2pinyin.php
│   │   ├── lib_code.php
│   │   ├── lib_pinyin.php
│   │   └── session.php
│   ├── logs
│   │   └── index.html
│   ├── models
│   │   ├── common_model.php
│   │   ├── data_model.php
│   │   └── mysql_model.php
│   ├── third_party
│   │   └── index.html
│   └── views
│       ├── header.php
│       ├── index.php
│       ├── inventory.php
│       ├── login.php
│       ├── main.php
│       ├── print
│       │   └── print-settings-voucher.php
│       ├── report
│       │   ├── account-pay-detail-new.php
│       │   ├── account-proceeds-detail-new.php
│       │   ├── bankBalance-detail.php
│       │   ├── bankBalance-exporter.php
│       │   ├── cash-bank-journal-new.php
│       │   ├── contact-debt-new.php
│       │   ├── contactDebt-detail.php
│       │   ├── contactDebt-exporter.php
│       │   ├── customerBalance-detail.php
│       │   ├── customerBalance-exporter.php
│       │   ├── customers-reconciliation-new.php
│       │   ├── deliverDetail-exporter.php
│       │   ├── deliverSummary-exporter.php
│       │   ├── fundBalance-detail.php
│       │   ├── fundBalance-detailSupplier.php
│       │   ├── fundBalance-exporter.php
│       │   ├── fundBalance-exporterSupplier.php
│       │   ├── goods-balance.php
│       │   ├── goods-flow-detail.php
│       │   ├── goods-flow-summary.php
│       │   ├── invBalance_exporter.php
│       │   ├── oriDetail_export.php
│       │   ├── other-income-expense-detail.php
│       │   ├── pu-detail-new.php
│       │   ├── pu-order-tracking.php
│       │   ├── pu-summary-new.php
│       │   ├── pu-summary-supply-new.php
│       │   ├── puDetail-detail.php
│       │   ├── puDetail-detailExporter.php
│       │   ├── puDetail-inv.php
│       │   ├── puDetail-invExporter.php
│       │   ├── puDetail-supply.php
│       │   ├── puDetail-supplyExporter.php
│       │   ├── sales-detail.php
│       │   ├── sales-order-tracking.php
│       │   ├── sales-summary-customer-new.php
│       │   ├── sales-summary.php
│       │   ├── salesDetail-customer.php
│       │   ├── salesDetail-customerExporter.php
│       │   ├── salesDetail-detailExporter.php
│       │   ├── salesDetail_invExporter.php
│       │   ├── supplierBalance-detail.php
│       │   ├── supplierBalance-exporter.php
│       │   └── suppliers-reconciliation-new.php
│       ├── sales
│       │   └── sales-search.php
│       ├── scm
│       │   ├── invOi
│       │   │   ├── exportInvCadj.php
│       │   │   ├── exportInvOi.php
│       │   │   ├── exportInvOo.php
│       │   │   ├── exportToPD.php
│       │   │   ├── initOi-cbtz.php
│       │   │   ├── initOi-cx.php
│       │   │   ├── initOi-in.php
│       │   │   ├── initOi-out.php
│       │   │   ├── initOi-zz.php
│       │   │   ├── initOiList-cbtz.php
│       │   │   ├── initOiList-cx.php
│       │   │   ├── initOiList-in.php
│       │   │   ├── initOiList-out.php
│       │   │   ├── initOiList-zz.php
│       │   │   ├── toCBTZPdf.php
│       │   │   ├── toOiPdf.php
│       │   │   └── toOoPdf.php
│       │   ├── invPo
│       │   │   ├── exportInvPo.php
│       │   │   ├── initPo.php
│       │   │   ├── initPoList.php
│       │   │   └── toPdf.php
│       │   ├── invPu
│       │   │   ├── exportInvPu.php
│       │   │   ├── initPur.php
│       │   │   ├── initPurList.php
│       │   │   └── toPdf.php
│       │   ├── invSa
│       │   │   ├── exportInvSa.php
│       │   │   ├── initSale.php
│       │   │   ├── initSaleList.php
│       │   │   └── toPdf.php
│       │   ├── invSo
│       │   │   ├── exportInvSo.php
│       │   │   ├── initSo.php
│       │   │   ├── initSoList.php
│       │   │   └── toPdf.php
│       │   ├── invTf
│       │   │   ├── exportInvTf.php
│       │   │   ├── initTf.php
│       │   │   ├── initTfList.php
│       │   │   └── toPdf.php
│       │   ├── ori
│       │   │   ├── exportExp.php
│       │   │   ├── exportInc.php
│       │   │   ├── initExp.php
│       │   │   ├── initExpList.php
│       │   │   ├── initInc.php
│       │   │   └── initIncList.php
│       │   ├── payment
│       │   │   ├── export.php
│       │   │   ├── initPay.php
│       │   │   ├── initPayList.php
│       │   │   └── initUnhxList.php
│       │   └── receipt
│       │       ├── exportReceipt.php
│       │       ├── initReceipt.php
│       │       ├── initReceiptList.php
│       │       └── initUnhxList.php
│       ├── service.php
│       ├── set_password.php
│       ├── settings
│       │   ├── addedServiceList.php
│       │   ├── addressmanage.php
│       │   ├── assistingProp-batch.php
│       │   ├── assistingPropGroupManage.php
│       │   ├── assistingprop.php
│       │   ├── authority-new.php
│       │   ├── authority-setting-data.php
│       │   ├── authority-setting.php
│       │   ├── authority.php
│       │   ├── backup.php
│       │   ├── category-list.php
│       │   ├── choose-account.php
│       │   ├── customer-batch.php
│       │   ├── customer-export.php
│       │   ├── customer-list.php
│       │   ├── customer-manage.php
│       │   ├── fileupload.php
│       │   ├── fileupload22.php
│       │   ├── goods-batch.php
│       │   ├── goods-export.php
│       │   ├── goods-list.php
│       │   ├── goods-manage.php
│       │   ├── import.php
│       │   ├── inventory-warning.php
│       │   ├── log-initloglist.php
│       │   ├── print-templates-manage.php
│       │   ├── print-templates.php
│       │   ├── prop-list.php
│       │   ├── propmanage.php
│       │   ├── resultInfo.php
│       │   ├── saler-batch.php
│       │   ├── select-customer.php
│       │   ├── set_password.php
│       │   ├── settlement-account.php
│       │   ├── settlement-category-list.php
│       │   ├── settlement-category-manage.php
│       │   ├── settlementAccount-batch.php
│       │   ├── settlementaccount-manager.php
│       │   ├── shippingaddress.php
│       │   ├── shippingaddressmanage.php
│       │   ├── staff-list.php
│       │   ├── staff-manage.php
│       │   ├── storage-batch.php
│       │   ├── storage-list.php
│       │   ├── storage-manage.php
│       │   ├── supplier-batch.php
│       │   ├── system-parameter.php
│       │   ├── unit-list.php
│       │   ├── unit-manage.php
│       │   ├── unitgroup-manage.php
│       │   ├── vendor-export.php
│       │   ├── vendor-list.php
│       │   ├── vendor-manage.php
│       │   └── 复件 print-templates.php
│       └── storage
│           ├── import.php
│           ├── inventory.php
│           ├── other-search.php
│           └── transfers-search.php
├── data
│   ├── backup
│   ├── cache
│   │   ├── ci_account08fb1179720f6b0ed503468e6aa4467e
│   │   ├── ci_account2178a2d4de7f2d82fe443c44c90ed8df
│   │   ├── ci_account_info1652707c1662d33c8ab87c061977aae1
│   │   ├── ci_account_infoac2da8fdeeded44e3a7bde17be768c0c
│   │   ├── ci_address6f61258526d91a372052dd595690b6d7
│   │   ├── ci_addresse0dd78eea8dcb7bfd8ca165906f1fdca
│   │   ├── ci_admin35addf910a209cb5c54e80ea0ce6c95d
│   │   ├── ci_admin76c467fde89607b81e2f7b77c26c4a45
│   │   ├── ci_admina5cb71e4ae79ba7062c04e68ee4c1ca8
│   │   ├── ci_admind036a2742e8fce24ebd211f8be49c7fc
│   │   ├── ci_assistingprop5707b760704cf7c8fd808f95881a127a
│   │   ├── ci_assistingpropb2b9528758ba290413696d27f8147723
│   │   ├── ci_assistsku230efb23c6355387eb8d62eedcaa5124
│   │   ├── ci_assistskuc749543f4776c0595b7a5bc784fd5dec
│   │   ├── ci_category002148499dbf95c99d4629116e6c36a1
│   │   ├── ci_category0ca0a8122b801ed55c770a9e531be2aa
│   │   ├── ci_category28cf9fdb78dd73a698b746d97bbe227f
│   │   ├── ci_category304ea7abafcd0bac17bac08b8ce6b0a2
│   │   ├── ci_category39fc95df020b629d89ec80d206718313
│   │   ├── ci_category3b7beb65ab2248e2f58fbe1340200ba0
│   │   ├── ci_category3c4c48937f3ef846765597b84ba7f1f9
│   │   ├── ci_category3eaf8d4a31bb45cb128c055c09b95b78
│   │   ├── ci_category7aa4525ebd31ff34ec161f9ba2d665b3
│   │   ├── ci_category895cfae144d049ed18dae5700773911c
│   │   ├── ci_category92e773d3cdd56b85c12855d6497ab3dc
│   │   ├── ci_category9332b38417aed5ce8256b26379ee63aa
│   │   ├── ci_category9bba5b768cb43849657a081bfb479043
│   │   ├── ci_categorya32544c77e9aace8ec31d17ec891346f
│   │   ├── ci_categorya6e9461b2705115d94cbc61f58933c5e
│   │   ├── ci_categoryb22c80ad52af83d2dd608ce8f0c8a3d1
│   │   ├── ci_categorybd32d0eb38b4cd1ff37a0681801af182
│   │   ├── ci_categorybe13da2e225dea25a3c3e19c4c42d7b7
│   │   ├── ci_categoryc1816ac9fc2eaf74323c59311206c0ab
│   │   ├── ci_categoryc6b47f5fd5e5e21a5801a20bae6177d0
│   │   ├── ci_categorye308bde87c345cbcaeb6bd6374cbbd00
│   │   ├── ci_categoryf2df04663162563651b6113124e91286
│   │   ├── ci_categoryffc1a03b8b943a238c2563152bf10621
│   │   ├── ci_contact08a6b72732b2027c89dddf2ddb9f75cf
│   │   ├── ci_contact18960a5c9699935c9414ca5d5c590af6
│   │   ├── ci_contact229b2b5dfe75d1cdb1f420e0d0bf62c8
│   │   ├── ci_contact237e80650232d62ed7df80922857dc99
│   │   ├── ci_contact40a874c15994fd5996225a9c72fc46f6
│   │   ├── ci_contact6083b7d46972c74c50009e01a837df49
│   │   ├── ci_contact8938a2b3f666fce59c4ed18b4ec592af
│   │   ├── ci_contact8f166b125dd6042b3fa77ec9c140fd4c
│   │   ├── ci_contact9aa065f7af6d7e16e9fc566a3da76681
│   │   ├── ci_contactd52f543a9a1fb146607b5319bb327c06
│   │   ├── ci_goods85276d69e5483acf853bb2317f2b43bb
│   │   ├── ci_goodsaf295efa65b0871c1ea6cbd774364586
│   │   ├── ci_goodsb7c19c928b0c215011aa65c66d6bb128
│   │   ├── ci_goodsd133a00df451cf3ef9ed4a834516e98a
│   │   ├── ci_goodsd5aacae46f53293b360b8b56fa70d165
│   │   ├── ci_goodsda7dcada22f0d4bf9815496a7fd2fac4
│   │   ├── ci_goodse4c4521691680e032a5c61da0be6b777
│   │   ├── ci_invoice033921f4ab82f6ff34c58d7a5c7c490c
│   │   ├── ci_invoice0f2d7606a70508e2c4915d4190c85a3d
│   │   ├── ci_invoice49ae3ca57ead7ef74535321c70be490e
│   │   ├── ci_invoice5971f76d456180af7a6c9096e743cb53
│   │   ├── ci_invoice73f1ad63bd4bb813f87f488604a9150d
│   │   ├── ci_invoice79ab880d73d947cd78f806727b1109ce
│   │   ├── ci_invoice7a74ce60d9a67c31e7582e54c86053e9
│   │   ├── ci_invoice7c0dbc4e7a280ff18ed6f36c71f16283
│   │   ├── ci_invoice_info0b347aa697dd49c6d5ae7b53fe109224
│   │   ├── ci_invoice_info17fae834217cca9ecfb05f7a51ba95ee
│   │   ├── ci_invoice_info1f7a7da912b323caf77c6bd0b874fe54
│   │   ├── ci_invoice_info2b7d72f5fb6f39b2ac3bc991a282b737
│   │   ├── ci_invoice_info358238b63d108a30c73df8f47542d61e
│   │   ├── ci_invoice_info4625b1bf4ce49bbaf84690d81a2b6828
│   │   ├── ci_invoice_info54a2e5c3002cdce14827d447f59873a4
│   │   ├── ci_invoice_info5c90877283b83d6c6069d317e0196aed
│   │   ├── ci_invoice_info6eb155d667816ce5caf92a399fa3a83b
│   │   ├── ci_invoice_info6ee8825fb9389d8b150b4fee592d56fc
│   │   ├── ci_invoice_info706914dadc00c95be9971850dda9bc84
│   │   ├── ci_invoice_info93a5f047333447b992c5c554a30cfae4
│   │   ├── ci_invoice_info95b6637db137314b5bb5526b530714e8
│   │   ├── ci_invoice_info95f695c8096383ecb96ff4f83762379e
│   │   ├── ci_invoice_infoa4340a73dfb889b80db9c14fe6e9f2ad
│   │   ├── ci_invoice_infoa477e202ab6d2a7aa508afa734722af1
│   │   ├── ci_invoice_infoa4ce9bea81fcc1c52da2cfba42efbf66
│   │   ├── ci_invoice_infoa5e0c1ae67bd5c72d6b72aa4ed051ee1
│   │   ├── ci_invoice_infob0529e9d6d4b8424ac42501de44b9cdd
│   │   ├── ci_invoice_infob2608581c881132901ae5a5e7387c4e9
│   │   ├── ci_invoice_infob6ca0ce040b35e3d382ca3f988cef72a
│   │   ├── ci_invoice_infob9f8f78df4e4bd45f5f23ecdd5ada89f
│   │   ├── ci_invoice_infobf0a1ede3e15779016967ee197141940
│   │   ├── ci_invoice_infoc06afab3fa1ba5073920ac7ab26c9d96
│   │   ├── ci_invoice_infoc6e51aaea64f6f9c5896fd5215589240
│   │   ├── ci_invoice_infodc84160738dd7d65de1b20600cae6545
│   │   ├── ci_invoice_infoe7ef1747b462b9f5806a72f96d31e334
│   │   ├── ci_invoice_infoe81b4b62b1c7eaf7dcfb2c9bd3476396
│   │   ├── ci_invoice_infoed2ba652f4ec500c12c5d030bc02fc80
│   │   ├── ci_invoice_type1468671e9f8c6dbb6666d4f29e2e81bf
│   │   ├── ci_invoice_type46bd333068b01ae251c221e793ae5d04
│   │   ├── ci_invoice_type85a63437b014f106d2c5a145f78986f7
│   │   ├── ci_invoice_typeb02ebfa2be94f796254c5778c991b3c7
│   │   ├── ci_invoicebd74adfbb88786b468dcf5cdcfc89d18
│   │   ├── ci_invoicecb7bae86eba6e87c0781995983bd7574
│   │   ├── ci_invoicef742fe4520e6a2b0ac46c77c914eab2e
│   │   ├── ci_menu82cd7c1de83e60b3d10569a073aa3511
│   │   ├── ci_menud4176ce28a1e44bc28563a6a167a1c71
│   │   ├── ci_optionsf5c88b7da18a90250fa421d589457dbb
│   │   ├── ci_staff56b8edbb63225b03c87b1d5f607e2214
│   │   ├── ci_staff88f0b7513ee929fadfa5e291fe26c50f
│   │   ├── ci_storage46f7e189bfd8981b00f190bbab2d10b9
│   │   ├── ci_storage66729b94f86706395936e1fadb4dd01d
│   │   ├── ci_storagec3d10cc94b81b4379a08210f673c1160
│   │   ├── ci_unit56eedf342d20504b898987c443e8b2d4
│   │   ├── ci_unit96db9baa38d09b2f8b0f8170c4a2f463
│   │   ├── ci_unittype4c143e8ddbbe52b5070633c9ef61c592
│   │   └── ci_unittypef152de2acf864428ca08f270ad935429
│   ├── download
│   │   ├── customer.xls
│   │   ├── goods.xls
│   │   ├── install.sql
│   │   └── vendor.xls
│   ├── logs
│   │   └── log-2015-06-13.php
│   └── upfile
│       └── goods
│           ├── 201506211006596296.jpg
│           ├── 201506211804581639.png
│           ├── 201506231357549729.png
│           ├── 201506261046496506.jpg
│           ├── 201507290923304930.png
│           ├── 201507290924032206.jpg
│           ├── 201508181720155677.jpg
│           ├── 201508300310199170.jpg
│           ├── 201508300310561166.jpg
│           └── thumbnail
│               ├── 201506211006596296.jpg
│               ├── 201506211804581639.png
│               ├── 201506231357549729.png
│               ├── 201506261046496506.jpg
│               ├── 201507290924032206.jpg
│               ├── 201508181720155677.jpg
│               ├── 201508300310199170.jpg
│               └── 201508300310561166.jpg
├── db.sql
├── index.php
├── statics
│   ├── css
│   │   ├── authority.css
│   │   ├── base
│   │   │   └── dialog
│   │   │       └── icons
│   │   │           ├── alert.gif
│   │   │           ├── confirm.gif
│   │   │           └── loading.gif
│   │   ├── base.css
│   │   ├── blue
│   │   │   ├── bills.css
│   │   │   ├── default.css
│   │   │   ├── img
│   │   │   │   ├── audit.png
│   │   │   │   ├── body_bg.png
│   │   │   │   ├── checked.png
│   │   │   │   ├── datepicker_icon.png
│   │   │   │   ├── footer_bg.png
│   │   │   │   ├── icon-select.gif
│   │   │   │   ├── icon.png
│   │   │   │   ├── icon_refresh.png
│   │   │   │   ├── icon_v_b_e.png
│   │   │   │   ├── icon_v_b_t.png
│   │   │   │   ├── icon_v_s_e.png
│   │   │   │   ├── icon_v_s_t.png
│   │   │   │   ├── index_bg.png
│   │   │   │   ├── index_h2_bg.png
│   │   │   │   ├── index_icons.png
│   │   │   │   ├── line_conn.gif
│   │   │   │   ├── nav_spr.png
│   │   │   │   ├── select_skin.png
│   │   │   │   ├── side_rp.png
│   │   │   │   ├── spr_icons.png
│   │   │   │   ├── tab_bg.png
│   │   │   │   ├── tab_close.png
│   │   │   │   ├── ui-icons.png
│   │   │   │   ├── ui-th.png
│   │   │   │   ├── ui1-icons.png
│   │   │   │   └── zTreeStandard.png
│   │   │   ├── index.css
│   │   │   └── ui.min.css
│   │   ├── common.css
│   │   ├── default
│   │   │   ├── bills.css
│   │   │   ├── default.css
│   │   │   ├── img
│   │   │   │   ├── audit.png
│   │   │   │   ├── body_bg.png
│   │   │   │   ├── checked.png
│   │   │   │   ├── datepicker_icon.png
│   │   │   │   ├── footer_bg.png
│   │   │   │   ├── icon-select.gif
│   │   │   │   ├── icon.png
│   │   │   │   ├── icon_refresh.png
│   │   │   │   ├── icon_v_b_e.png
│   │   │   │   ├── icon_v_b_t.png
│   │   │   │   ├── icon_v_s_e.png
│   │   │   │   ├── icon_v_s_t.png
│   │   │   │   ├── index_bg.png
│   │   │   │   ├── index_h2_bg.png
│   │   │   │   ├── index_icons.png
│   │   │   │   ├── line_conn.gif
│   │   │   │   ├── nav_spr.png
│   │   │   │   ├── select_skin.png
│   │   │   │   ├── side_rp.png
│   │   │   │   ├── side_rp2.png
│   │   │   │   ├── spr_icons.png
│   │   │   │   ├── tab_bg.png
│   │   │   │   ├── tab_close.png
│   │   │   │   ├── ui-icons.png
│   │   │   │   ├── ui-th.png
│   │   │   │   └── zTreeStandard.png
│   │   │   ├── index.css
│   │   │   └── ui.min.css
│   │   ├── green
│   │   │   ├── bills.css
│   │   │   ├── default.css
│   │   │   ├── img
│   │   │   │   ├── audit.png
│   │   │   │   ├── body_bg.png
│   │   │   │   ├── checked.png
│   │   │   │   ├── datepicker_icon.png
│   │   │   │   ├── footer_bg.png
│   │   │   │   ├── icon-select.gif
│   │   │   │   ├── icon.png
│   │   │   │   ├── icon_refresh.png
│   │   │   │   ├── icon_v_b_e.png
│   │   │   │   ├── icon_v_b_t.png
│   │   │   │   ├── icon_v_s_e.png
│   │   │   │   ├── icon_v_s_t.png
│   │   │   │   ├── index_bg.png
│   │   │   │   ├── index_h2_bg.png
│   │   │   │   ├── index_icons.png
│   │   │   │   ├── line_conn.gif
│   │   │   │   ├── nav_spr.png
│   │   │   │   ├── select_skin.png
│   │   │   │   ├── side_rp.png
│   │   │   │   ├── spr_icons.png
│   │   │   │   ├── tab_bg.png
│   │   │   │   ├── tab_close.png
│   │   │   │   ├── ui-icons.png
│   │   │   │   ├── ui-th.png
│   │   │   │   └── zTreeStandard.png
│   │   │   ├── index.css
│   │   │   └── ui.min.css
│   │   ├── img
│   │   │   ├── close_all.png
│   │   │   ├── dot.gif
│   │   │   ├── indicator.gif
│   │   │   ├── ligerui
│   │   │   │   ├── bigloading.gif
│   │   │   │   ├── menu-item-over-l.gif
│   │   │   │   ├── menu-item-over-m.gif
│   │   │   │   ├── menu-item-over-r.gif
│   │   │   │   └── menu-line-y.gif
│   │   │   ├── no_query.png
│   │   │   ├── page_spr_icons.png
│   │   │   ├── select_skin.png
│   │   │   ├── spr_icons.png
│   │   │   ├── ui-icons.png
│   │   │   └── value-added-icon.png
│   │   ├── print.css
│   │   └── report.css
│   ├── js
│   │   ├── common
│   │   │   ├── areasData.php
│   │   │   ├── grid.js
│   │   │   ├── libs
│   │   │   │   ├── jquery
│   │   │   │   │   └── jquery-1.10.2.min.js
│   │   │   │   ├── json2.js
│   │   │   │   ├── kind
│   │   │   │   │   ├── kindeditor-all-min.js
│   │   │   │   │   ├── kindeditor-all.js
│   │   │   │   │   ├── kindeditor-min.js
│   │   │   │   │   ├── kindeditor.js
│   │   │   │   │   ├── lang
│   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   ├── ko.js
│   │   │   │   │   │   ├── zh_CN.js
│   │   │   │   │   │   └── zh_TW.js
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   ├── anchor
│   │   │   │   │   │   │   └── anchor.js
│   │   │   │   │   │   ├── autoheight
│   │   │   │   │   │   │   └── autoheight.js
│   │   │   │   │   │   ├── baidumap
│   │   │   │   │   │   │   ├── baidumap.js
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── map.html
│   │   │   │   │   │   ├── clearhtml
│   │   │   │   │   │   │   └── clearhtml.js
│   │   │   │   │   │   ├── code
│   │   │   │   │   │   │   ├── code.js
│   │   │   │   │   │   │   ├── prettify.css
│   │   │   │   │   │   │   └── prettify.js
│   │   │   │   │   │   ├── emoticons
│   │   │   │   │   │   │   ├── emoticons.js
│   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │       ├── 0.gif
│   │   │   │   │   │   │       ├── 1.gif
│   │   │   │   │   │   │       ├── 10.gif
│   │   │   │   │   │   │       ├── 100.gif
│   │   │   │   │   │   │       ├── 101.gif
│   │   │   │   │   │   │       ├── 102.gif
│   │   │   │   │   │   │       ├── 103.gif
│   │   │   │   │   │   │       ├── 104.gif
│   │   │   │   │   │   │       ├── 105.gif
│   │   │   │   │   │   │       ├── 106.gif
│   │   │   │   │   │   │       ├── 107.gif
│   │   │   │   │   │   │       ├── 108.gif
│   │   │   │   │   │   │       ├── 109.gif
│   │   │   │   │   │   │       ├── 11.gif
│   │   │   │   │   │   │       ├── 110.gif
│   │   │   │   │   │   │       ├── 111.gif
│   │   │   │   │   │   │       ├── 112.gif
│   │   │   │   │   │   │       ├── 113.gif
│   │   │   │   │   │   │       ├── 114.gif
│   │   │   │   │   │   │       ├── 115.gif
│   │   │   │   │   │   │       ├── 116.gif
│   │   │   │   │   │   │       ├── 117.gif
│   │   │   │   │   │   │       ├── 118.gif
│   │   │   │   │   │   │       ├── 119.gif
│   │   │   │   │   │   │       ├── 12.gif
│   │   │   │   │   │   │       ├── 120.gif
│   │   │   │   │   │   │       ├── 121.gif
│   │   │   │   │   │   │       ├── 122.gif
│   │   │   │   │   │   │       ├── 123.gif
│   │   │   │   │   │   │       ├── 124.gif
│   │   │   │   │   │   │       ├── 125.gif
│   │   │   │   │   │   │       ├── 126.gif
│   │   │   │   │   │   │       ├── 127.gif
│   │   │   │   │   │   │       ├── 128.gif
│   │   │   │   │   │   │       ├── 129.gif
│   │   │   │   │   │   │       ├── 13.gif
│   │   │   │   │   │   │       ├── 130.gif
│   │   │   │   │   │   │       ├── 131.gif
│   │   │   │   │   │   │       ├── 132.gif
│   │   │   │   │   │   │       ├── 133.gif
│   │   │   │   │   │   │       ├── 134.gif
│   │   │   │   │   │   │       ├── 14.gif
│   │   │   │   │   │   │       ├── 15.gif
│   │   │   │   │   │   │       ├── 16.gif
│   │   │   │   │   │   │       ├── 17.gif
│   │   │   │   │   │   │       ├── 18.gif
│   │   │   │   │   │   │       ├── 19.gif
│   │   │   │   │   │   │       ├── 2.gif
│   │   │   │   │   │   │       ├── 20.gif
│   │   │   │   │   │   │       ├── 21.gif
│   │   │   │   │   │   │       ├── 22.gif
│   │   │   │   │   │   │       ├── 23.gif
│   │   │   │   │   │   │       ├── 24.gif
│   │   │   │   │   │   │       ├── 25.gif
│   │   │   │   │   │   │       ├── 26.gif
│   │   │   │   │   │   │       ├── 27.gif
│   │   │   │   │   │   │       ├── 28.gif
│   │   │   │   │   │   │       ├── 29.gif
│   │   │   │   │   │   │       ├── 3.gif
│   │   │   │   │   │   │       ├── 30.gif
│   │   │   │   │   │   │       ├── 31.gif
│   │   │   │   │   │   │       ├── 32.gif
│   │   │   │   │   │   │       ├── 33.gif
│   │   │   │   │   │   │       ├── 34.gif
│   │   │   │   │   │   │       ├── 35.gif
│   │   │   │   │   │   │       ├── 36.gif
│   │   │   │   │   │   │       ├── 37.gif
│   │   │   │   │   │   │       ├── 38.gif
│   │   │   │   │   │   │       ├── 39.gif
│   │   │   │   │   │   │       ├── 4.gif
│   │   │   │   │   │   │       ├── 40.gif
│   │   │   │   │   │   │       ├── 41.gif
│   │   │   │   │   │   │       ├── 42.gif
│   │   │   │   │   │   │       ├── 43.gif
│   │   │   │   │   │   │       ├── 44.gif
│   │   │   │   │   │   │       ├── 45.gif
│   │   │   │   │   │   │       ├── 46.gif
│   │   │   │   │   │   │       ├── 47.gif
│   │   │   │   │   │   │       ├── 48.gif
│   │   │   │   │   │   │       ├── 49.gif
│   │   │   │   │   │   │       ├── 5.gif
│   │   │   │   │   │   │       ├── 50.gif
│   │   │   │   │   │   │       ├── 51.gif
│   │   │   │   │   │   │       ├── 52.gif
│   │   │   │   │   │   │       ├── 53.gif
│   │   │   │   │   │   │       ├── 54.gif
│   │   │   │   │   │   │       ├── 55.gif
│   │   │   │   │   │   │       ├── 56.gif
│   │   │   │   │   │   │       ├── 57.gif
│   │   │   │   │   │   │       ├── 58.gif
│   │   │   │   │   │   │       ├── 59.gif
│   │   │   │   │   │   │       ├── 6.gif
│   │   │   │   │   │   │       ├── 60.gif
│   │   │   │   │   │   │       ├── 61.gif
│   │   │   │   │   │   │       ├── 62.gif
│   │   │   │   │   │   │       ├── 63.gif
│   │   │   │   │   │   │       ├── 64.gif
│   │   │   │   │   │   │       ├── 65.gif
│   │   │   │   │   │   │       ├── 66.gif
│   │   │   │   │   │   │       ├── 67.gif
│   │   │   │   │   │   │       ├── 68.gif
│   │   │   │   │   │   │       ├── 69.gif
│   │   │   │   │   │   │       ├── 7.gif
│   │   │   │   │   │   │       ├── 70.gif
│   │   │   │   │   │   │       ├── 71.gif
│   │   │   │   │   │   │       ├── 72.gif
│   │   │   │   │   │   │       ├── 73.gif
│   │   │   │   │   │   │       ├── 74.gif
│   │   │   │   │   │   │       ├── 75.gif
│   │   │   │   │   │   │       ├── 76.gif
│   │   │   │   │   │   │       ├── 77.gif
│   │   │   │   │   │   │       ├── 78.gif
│   │   │   │   │   │   │       ├── 79.gif
│   │   │   │   │   │   │       ├── 8.gif
│   │   │   │   │   │   │       ├── 80.gif
│   │   │   │   │   │   │       ├── 81.gif
│   │   │   │   │   │   │       ├── 82.gif
│   │   │   │   │   │   │       ├── 83.gif
│   │   │   │   │   │   │       ├── 84.gif
│   │   │   │   │   │   │       ├── 85.gif
│   │   │   │   │   │   │       ├── 86.gif
│   │   │   │   │   │   │       ├── 87.gif
│   │   │   │   │   │   │       ├── 88.gif
│   │   │   │   │   │   │       ├── 89.gif
│   │   │   │   │   │   │       ├── 9.gif
│   │   │   │   │   │   │       ├── 90.gif
│   │   │   │   │   │   │       ├── 91.gif
│   │   │   │   │   │   │       ├── 92.gif
│   │   │   │   │   │   │       ├── 93.gif
│   │   │   │   │   │   │       ├── 94.gif
│   │   │   │   │   │   │       ├── 95.gif
│   │   │   │   │   │   │       ├── 96.gif
│   │   │   │   │   │   │       ├── 97.gif
│   │   │   │   │   │   │       ├── 98.gif
│   │   │   │   │   │   │       ├── 99.gif
│   │   │   │   │   │   │       └── static.gif
│   │   │   │   │   │   ├── filemanager
│   │   │   │   │   │   │   ├── filemanager.js
│   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │       ├── file-16.gif
│   │   │   │   │   │   │       ├── file-64.gif
│   │   │   │   │   │   │       ├── folder-16.gif
│   │   │   │   │   │   │       ├── folder-64.gif
│   │   │   │   │   │   │       └── go-up.gif
│   │   │   │   │   │   ├── flash
│   │   │   │   │   │   │   └── flash.js
│   │   │   │   │   │   ├── image
│   │   │   │   │   │   │   ├── image.js
│   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │       ├── align_left.gif
│   │   │   │   │   │   │       ├── align_right.gif
│   │   │   │   │   │   │       ├── align_top.gif
│   │   │   │   │   │   │       └── refresh.png
│   │   │   │   │   │   ├── insertfile
│   │   │   │   │   │   │   └── insertfile.js
│   │   │   │   │   │   ├── lineheight
│   │   │   │   │   │   │   └── lineheight.js
│   │   │   │   │   │   ├── link
│   │   │   │   │   │   │   └── link.js
│   │   │   │   │   │   ├── map
│   │   │   │   │   │   │   ├── map.html
│   │   │   │   │   │   │   └── map.js
│   │   │   │   │   │   ├── media
│   │   │   │   │   │   │   └── media.js
│   │   │   │   │   │   ├── multiimage
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── image.png
│   │   │   │   │   │   │   │   ├── select-files-en.png
│   │   │   │   │   │   │   │   ├── select-files-zh_CN.png
│   │   │   │   │   │   │   │   └── swfupload.swf
│   │   │   │   │   │   │   └── multiimage.js
│   │   │   │   │   │   ├── pagebreak
│   │   │   │   │   │   │   └── pagebreak.js
│   │   │   │   │   │   ├── plainpaste
│   │   │   │   │   │   │   └── plainpaste.js
│   │   │   │   │   │   ├── preview
│   │   │   │   │   │   │   └── preview.js
│   │   │   │   │   │   ├── quickformat
│   │   │   │   │   │   │   └── quickformat.js
│   │   │   │   │   │   ├── table
│   │   │   │   │   │   │   └── table.js
│   │   │   │   │   │   ├── template
│   │   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   │   ├── 1.html
│   │   │   │   │   │   │   │   ├── 2.html
│   │   │   │   │   │   │   │   └── 3.html
│   │   │   │   │   │   │   └── template.js
│   │   │   │   │   │   └── wordpaste
│   │   │   │   │   │       └── wordpaste.js
│   │   │   │   │   └── themes
│   │   │   │   │       ├── common
│   │   │   │   │       │   ├── anchor.gif
│   │   │   │   │       │   ├── blank.gif
│   │   │   │   │       │   ├── flash.gif
│   │   │   │   │       │   ├── loading.gif
│   │   │   │   │       │   ├── media.gif
│   │   │   │   │       │   └── rm.gif
│   │   │   │   │       ├── default
│   │   │   │   │       │   ├── background.png
│   │   │   │   │       │   ├── default.css
│   │   │   │   │       │   └── default.png
│   │   │   │   │       ├── qq
│   │   │   │   │       │   ├── editor.gif
│   │   │   │   │       │   └── qq.css
│   │   │   │   │       └── simple
│   │   │   │   │           └── simple.css
│   │   │   │   ├── swfupload
│   │   │   │   │   ├── import-btn.png
│   │   │   │   │   ├── swfupload.js
│   │   │   │   │   └── swfupload.swf
│   │   │   │   └── uploader
│   │   │   │       ├── jquery.uploader.css
│   │   │   │       └── jquery.uploader.js
│   │   │   ├── main.js
│   │   │   ├── plugins
│   │   │   │   ├── datepicker
│   │   │   │   │   └── pikaday.js
│   │   │   │   ├── fileupload
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── demo-ie8.css
│   │   │   │   │   │   ├── demo.css
│   │   │   │   │   │   ├── jquery.fileupload-noscript.css
│   │   │   │   │   │   ├── jquery.fileupload-ui-noscript.css
│   │   │   │   │   │   ├── jquery.fileupload-ui.css
│   │   │   │   │   │   ├── jquery.fileupload.css
│   │   │   │   │   │   └── style.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   └── progressbar.gif
│   │   │   │   │   └── js
│   │   │   │   │       ├── app.js
│   │   │   │   │       ├── cors
│   │   │   │   │       │   ├── jquery.postmessage-transport.js
│   │   │   │   │       │   └── jquery.xdr-transport.js
│   │   │   │   │       ├── jquery.fileupload-angular.js
│   │   │   │   │       ├── jquery.fileupload-audio.js
│   │   │   │   │       ├── jquery.fileupload-image.js
│   │   │   │   │       ├── jquery.fileupload-jquery-ui.js
│   │   │   │   │       ├── jquery.fileupload-process.js
│   │   │   │   │       ├── jquery.fileupload-ui.js
│   │   │   │   │       ├── jquery.fileupload-validate.js
│   │   │   │   │       ├── jquery.fileupload-video.js
│   │   │   │   │       ├── jquery.fileupload.js
│   │   │   │   │       ├── jquery.iframe-transport.js
│   │   │   │   │       ├── main.js
│   │   │   │   │       └── vendor
│   │   │   │   │           └── jquery.ui.widget.js
│   │   │   │   ├── jquery.dialog.js
│   │   │   │   ├── jquery.print.js
│   │   │   │   └── validator
│   │   │   │       ├── images
│   │   │   │       │   ├── loading.gif
│   │   │   │       │   └── validator_simple.png
│   │   │   │       ├── jquery.validator.css
│   │   │   │       ├── jquery.validator.js
│   │   │   │       └── local
│   │   │   │           └── zh_CN.js
│   │   │   ├── plugins.js
│   │   │   └── seajs
│   │   │       └── 2.1.1
│   │   │           └── sea.js
│   │   └── dist
│   │       ├── accountPayDetail.js
│   │       ├── accountPayDetailNew.js
│   │       ├── accountProceedsDetail.js
│   │       ├── accountProceedsDetailNew.js
│   │       ├── addedServiceList.js
│   │       ├── addressManage.js
│   │       ├── adjustment.js
│   │       ├── adjustmentList.js
│   │       ├── advSearch.js
│   │       ├── assemble.js
│   │       ├── assembleList.js
│   │       ├── assistingProp.js
│   │       ├── assistingPropBatch.js
│   │       ├── assistingPropGroupManage.js
│   │       ├── backup.js
│   │       ├── cashBankJournal.js
│   │       ├── cashBankJournalNew.js
│   │       ├── categoryList.js
│   │       ├── chooseAccount.js
│   │       ├── contact-debt.js
│   │       ├── contactDebtNew.js
│   │       ├── customerBatch.js
│   │       ├── customerList.js
│   │       ├── customerManage.js
│   │       ├── customersReconciliation.js
│   │       ├── customersReconciliationNew.js
│   │       ├── default.js
│   │       ├── disassemble.js
│   │       ├── disassembleList.js
│   │       ├── fileUpload.js
│   │       ├── goodsBalance.js
│   │       ├── goodsBatch.js
│   │       ├── goodsFlowDetail.js
│   │       ├── goodsFlowSummary.js
│   │       ├── goodsInventory.js
│   │       ├── goodsList.js
│   │       ├── goodsManage.js
│   │       ├── inventory.js
│   │       ├── operationLog.js
│   │       ├── other-expense-list.js
│   │       ├── other-expense.js
│   │       ├── other-income-list.js
│   │       ├── other-income.js
│   │       ├── otherIncomeExpenseDetail.js
│   │       ├── otherOutbound.js
│   │       ├── otherOutboundList.js
│   │       ├── otherWarehouse.js
│   │       ├── otherWarehouseList.js
│   │       ├── parameter.js
│   │       ├── payment.js
│   │       ├── paymentList.js
│   │       ├── print-templates-manage.js
│   │       ├── printTemplates.js
│   │       ├── propList.js
│   │       ├── propManage.js
│   │       ├── pu-summary-supply.js
│   │       ├── pu-summary.js
│   │       ├── puDetail.js
│   │       ├── puDetailNew.js
│   │       ├── puOrderTracking.js
│   │       ├── puSummaryNew.js
│   │       ├── puSummarySupplyNew.js
│   │       ├── purchase.js
│   │       ├── purchaseList.js
│   │       ├── purchaseOrder.js
│   │       ├── purchaseOrderList.js
│   │       ├── receipt.js
│   │       ├── receiptList.js
│   │       ├── register.js
│   │       ├── salerBatch.js
│   │       ├── sales-summary-customer.js
│   │       ├── sales.js
│   │       ├── sales1.js
│   │       ├── salesDetail.js
│   │       ├── salesList.js
│   │       ├── salesOrder.js
│   │       ├── salesOrderList.js
│   │       ├── salesOrderTracking.js
│   │       ├── salesSummary.js
│   │       ├── salesSummaryCustomerNew.js
│   │       ├── selectCustomer.js
│   │       ├── selectSource.js
│   │       ├── settlementAccount.js
│   │       ├── settlementAccountBatch.js
│   │       ├── settlementAccountManager.js
│   │       ├── settlementCategory.js
│   │       ├── settlementCategoryManager.js
│   │       ├── shippingAddress.js
│   │       ├── shippingAddressManage.js
│   │       ├── staffList.js
│   │       ├── staffManage.js
│   │       ├── storageBatch.js
│   │       ├── storageList.js
│   │       ├── storageManage.js
│   │       ├── supplierBatch.js
│   │       ├── suppliersReconciliation.js
│   │       ├── suppliersReconciliationNew.js
│   │       ├── template.js
│   │       ├── transfers.js
│   │       ├── transfersList.js
│   │       ├── unitGroupManage.js
│   │       ├── unitList.js
│   │       ├── unitManage.js
│   │       ├── vendorList.js
│   │       └── vendorManage.js
│   ├── login
│   │   ├── Css
│   │   │   ├── common.css
│   │   │   └── global.css
│   │   ├── Images
│   │   │   ├── WebIcon
│   │   │   ├── checkbox.png
│   │   │   ├── checkboxtrue.png
│   │   │   ├── loading.gif
│   │   │   ├── loginbox.png
│   │   │   ├── loginbtn.png
│   │   │   └── loginlogo.png
│   │   └── Scripts
│   │       └── minijs
│   │           ├── common.js
│   │           ├── jquery-1.7.1.js
│   │           └── minicheck.js
│   ├── resources
│   │   └── v7
│   │       ├── css
│   │       │   └── phone_validate.css
│   │       └── js
│   │           ├── checkPassword.js
│   │           ├── jquery.min.js
│   │           └── phone_validate.js
│   ├── saas
│   │   └── scm
│   │       ├── app2_beta
│   │       │   ├── css
│   │       │   │   ├── blue
│   │       │   │   │   ├── icons
│   │       │   │   │   │   └── loading.gif
│   │       │   │   │   ├── img
│   │       │   │   │   │   ├── checked.png
│   │       │   │   │   │   ├── datepicker_icon.png
│   │       │   │   │   │   ├── icon-select.gif
│   │       │   │   │   │   ├── icon_refresh.png
│   │       │   │   │   │   ├── line_conn.gif
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── radio.png
│   │       │   │   │   │   ├── spr_icons.png
│   │       │   │   │   │   ├── ui-th.png
│   │       │   │   │   │   └── zTreeStandard.png
│   │       │   │   │   └── ui.min.css
│   │       │   │   ├── common.css
│   │       │   │   ├── default
│   │       │   │   │   ├── icons
│   │       │   │   │   │   └── loading.gif
│   │       │   │   │   ├── img
│   │       │   │   │   │   ├── checked.png
│   │       │   │   │   │   ├── datepicker_icon.png
│   │       │   │   │   │   ├── icon-select.gif
│   │       │   │   │   │   ├── icon_refresh.png
│   │       │   │   │   │   ├── line_conn.gif
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── radio.png
│   │       │   │   │   │   ├── spr_icons.png
│   │       │   │   │   │   ├── ui-th.png
│   │       │   │   │   │   └── zTreeStandard.png
│   │       │   │   │   └── ui.min.css
│   │       │   │   ├── green
│   │       │   │   │   ├── icons
│   │       │   │   │   │   └── loading.gif
│   │       │   │   │   ├── img
│   │       │   │   │   │   ├── checked.png
│   │       │   │   │   │   ├── datepicker_icon.png
│   │       │   │   │   │   ├── icon-select.gif
│   │       │   │   │   │   ├── icon_refresh.png
│   │       │   │   │   │   ├── line_conn.gif
│   │       │   │   │   │   ├── loading.gif
│   │       │   │   │   │   ├── radio.png
│   │       │   │   │   │   ├── spr_icons.png
│   │       │   │   │   │   ├── ui-th.png
│   │       │   │   │   │   └── zTreeStandard.png
│   │       │   │   │   └── ui.min.css
│   │       │   │   └── img
│   │       │   │       ├── close_all.png
│   │       │   │       ├── dot.gif
│   │       │   │       ├── indicator.gif
│   │       │   │       ├── ligerui
│   │       │   │       │   ├── bigloading.gif
│   │       │   │       │   ├── menu-item-over-l.gif
│   │       │   │       │   ├── menu-item-over-m.gif
│   │       │   │       │   ├── menu-item-over-r.gif
│   │       │   │       │   └── menu-line-y.gif
│   │       │   │       ├── no_query.png
│   │       │   │       ├── page_spr_icons.png
│   │       │   │       ├── select_skin.png
│   │       │   │       ├── ui-icons.png
│   │       │   │       └── ui-icons_20150410.png
│   │       │   └── js
│   │       │       └── common
│   │       │           ├── addedServiceData.js
│   │       │           ├── common.js
│   │       │           ├── grid.js
│   │       │           ├── libs
│   │       │           │   ├── jquery
│   │       │           │   │   └── jquery-1.10.2.min.js
│   │       │           │   ├── json2.js
│   │       │           │   └── json3.min.js
│   │       │           ├── plugins
│   │       │           │   ├── fileupload
│   │       │           │   │   └── js
│   │       │           │   │       ├── jquery.fileupload.js
│   │       │           │   │       ├── jquery.iframe-transport.js
│   │       │           │   │       └── vendor
│   │       │           │   │           └── jquery.ui.widget.js
│   │       │           │   ├── jquery.dialog.js
│   │       │           │   ├── jquery.spinbox.js
│   │       │           │   └── zTree
│   │       │           │       └── css
│   │       │           │           └── zTreeStyle
│   │       │           │               └── img
│   │       │           │                   └── zTreeStandard.png
│   │       │           ├── plugins.js
│   │       │           ├── tabs.js
│   │       │           └── 复件 grid.js
│   │       └── app2_release
│   │           ├── css
│   │           │   ├── blue
│   │           │   │   ├── icons
│   │           │   │   │   └── loading.gif
│   │           │   │   ├── img
│   │           │   │   │   ├── datepicker_icon.png
│   │           │   │   │   ├── icon-select.gif
│   │           │   │   │   ├── icon_refresh.png
│   │           │   │   │   ├── line_conn.gif
│   │           │   │   │   ├── loading.gif
│   │           │   │   │   ├── radio.png
│   │           │   │   │   ├── spr_icons.png
│   │           │   │   │   ├── ui-th.png
│   │           │   │   │   └── zTreeStandard.png
│   │           │   │   └── ui.min.css
│   │           │   ├── common.css
│   │           │   ├── default
│   │           │   │   ├── icons
│   │           │   │   │   └── loading.gif
│   │           │   │   ├── img
│   │           │   │   │   ├── datepicker_icon.png
│   │           │   │   │   ├── icon-select.gif
│   │           │   │   │   ├── icon_refresh.png
│   │           │   │   │   ├── line_conn.gif
│   │           │   │   │   ├── loading.gif
│   │           │   │   │   ├── radio.png
│   │           │   │   │   ├── spr_icons.png
│   │           │   │   │   ├── ui-th.png
│   │           │   │   │   └── zTreeStandard.png
│   │           │   │   └── ui.min.css
│   │           │   ├── green
│   │           │   │   ├── icons
│   │           │   │   │   └── loading.gif
│   │           │   │   ├── img
│   │           │   │   │   ├── checked.png
│   │           │   │   │   ├── datepicker_icon.png
│   │           │   │   │   ├── icon-select.gif
│   │           │   │   │   ├── icon_refresh.png
│   │           │   │   │   ├── line_conn.gif
│   │           │   │   │   ├── loading.gif
│   │           │   │   │   ├── radio.png
│   │           │   │   │   ├── spr_icons.png
│   │           │   │   │   ├── ui-th.png
│   │           │   │   │   └── zTreeStandard.png
│   │           │   │   └── ui.min.css
│   │           │   └── img
│   │           │       ├── close_all.png
│   │           │       ├── dot.gif
│   │           │       ├── indicator.gif
│   │           │       ├── ligerui
│   │           │       │   ├── bigloading.gif
│   │           │       │   ├── menu-item-over-l.gif
│   │           │       │   ├── menu-item-over-m.gif
│   │           │       │   ├── menu-item-over-r.gif
│   │           │       │   └── menu-line-y.gif
│   │           │       ├── no_query.png
│   │           │       ├── page_spr_icons.png
│   │           │       ├── select_skin.png
│   │           │       ├── ui-icons.png
│   │           │       └── ui-icons_20150410.png
│   │           └── js
│   │               └── common
│   │                   ├── addedServiceData.js
│   │                   ├── common.js
│   │                   ├── grid.js
│   │                   ├── libs
│   │                   │   ├── jquery
│   │                   │   │   └── jquery-1.10.2.min.js
│   │                   │   ├── json2.js
│   │                   │   └── json3.min.js
│   │                   ├── plugins
│   │                   │   ├── fileupload
│   │                   │   │   └── js
│   │                   │   │       ├── jquery.fileupload.js
│   │                   │   │       ├── jquery.iframe-transport.js
│   │                   │   │       └── vendor
│   │                   │   │           └── jquery.ui.widget.js
│   │                   │   ├── jquery.dialog.js
│   │                   │   ├── jquery.spinbox.js
│   │                   │   └── zTree
│   │                   │       └── css
│   │                   │           └── zTreeStyle
│   │                   │               └── img
│   │                   │                   └── zTreeStandard.png
│   │                   ├── plugins.js
│   │                   └── tabs.js
│   └── service
│       └── css
│           ├── global.css
│           └── img
│               ├── contact_icons.png
│               └── serviceChannel.jpg
├── system
│   ├── core
│   │   ├── Benchmark.php
│   │   ├── CodeIgniter.php
│   │   ├── Common.php
│   │   ├── Config.php
│   │   ├── Controller.php
│   │   ├── Exceptions.php
│   │   ├── Hooks.php
│   │   ├── Input.php
│   │   ├── Lang.php
│   │   ├── Loader.php
│   │   ├── Model.php
│   │   ├── Output.php
│   │   ├── Router.php
│   │   ├── Security.php
│   │   ├── URI.php
│   │   ├── Utf8.php
│   │   └── index.html
│   ├── database
│   │   ├── DB.php
│   │   ├── DB_active_rec.php
│   │   ├── DB_cache.php
│   │   ├── DB_driver.php
│   │   ├── DB_forge.php
│   │   ├── DB_result.php
│   │   ├── DB_utility.php
│   │   ├── drivers
│   │   │   ├── cubrid
│   │   │   │   ├── cubrid_driver.php
│   │   │   │   ├── cubrid_forge.php
│   │   │   │   ├── cubrid_result.php
│   │   │   │   ├── cubrid_utility.php
│   │   │   │   └── index.html
│   │   │   ├── index.html
│   │   │   ├── mssql
│   │   │   │   ├── index.html
│   │   │   │   ├── mssql_driver.php
│   │   │   │   ├── mssql_forge.php
│   │   │   │   ├── mssql_result.php
│   │   │   │   └── mssql_utility.php
│   │   │   ├── mysql
│   │   │   │   ├── index.html
│   │   │   │   ├── mysql_driver.php
│   │   │   │   ├── mysql_forge.php
│   │   │   │   ├── mysql_result.php
│   │   │   │   └── mysql_utility.php
│   │   │   ├── mysqli
│   │   │   │   ├── index.html
│   │   │   │   ├── mysqli_driver.php
│   │   │   │   ├── mysqli_forge.php
│   │   │   │   ├── mysqli_result.php
│   │   │   │   └── mysqli_utility.php
│   │   │   ├── oci8
│   │   │   │   ├── index.html
│   │   │   │   ├── oci8_driver.php
│   │   │   │   ├── oci8_forge.php
│   │   │   │   ├── oci8_result.php
│   │   │   │   └── oci8_utility.php
│   │   │   ├── odbc
│   │   │   │   ├── index.html
│   │   │   │   ├── odbc_driver.php
│   │   │   │   ├── odbc_forge.php
│   │   │   │   ├── odbc_result.php
│   │   │   │   └── odbc_utility.php
│   │   │   ├── pdo
│   │   │   │   ├── index.html
│   │   │   │   ├── pdo_driver.php
│   │   │   │   ├── pdo_forge.php
│   │   │   │   ├── pdo_result.php
│   │   │   │   └── pdo_utility.php
│   │   │   ├── postgre
│   │   │   │   ├── index.html
│   │   │   │   ├── postgre_driver.php
│   │   │   │   ├── postgre_forge.php
│   │   │   │   ├── postgre_result.php
│   │   │   │   └── postgre_utility.php
│   │   │   ├── sqlite
│   │   │   │   ├── index.html
│   │   │   │   ├── sqlite_driver.php
│   │   │   │   ├── sqlite_forge.php
│   │   │   │   ├── sqlite_result.php
│   │   │   │   └── sqlite_utility.php
│   │   │   └── sqlsrv
│   │   │       ├── index.html
│   │   │       ├── sqlsrv_driver.php
│   │   │       ├── sqlsrv_forge.php
│   │   │       ├── sqlsrv_result.php
│   │   │       └── sqlsrv_utility.php
│   │   └── index.html
│   ├── fonts
│   │   ├── index.html
│   │   └── texb.ttf
│   ├── helpers
│   │   ├── array_helper.php
│   │   ├── captcha_helper.php
│   │   ├── cookie_helper.php
│   │   ├── date_helper.php
│   │   ├── directory_helper.php
│   │   ├── download_helper.php
│   │   ├── email_helper.php
│   │   ├── file_helper.php
│   │   ├── form_helper.php
│   │   ├── html_helper.php
│   │   ├── index.html
│   │   ├── inflector_helper.php
│   │   ├── language_helper.php
│   │   ├── number_helper.php
│   │   ├── path_helper.php
│   │   ├── security_helper.php
│   │   ├── smiley_helper.php
│   │   ├── string_helper.php
│   │   ├── text_helper.php
│   │   ├── typography_helper.php
│   │   ├── url_helper.php
│   │   └── xml_helper.php
│   ├── index.html
│   ├── language
│   │   ├── english
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   └── index.html
│   └── libraries
│       ├── Cache
│       │   ├── Cache.php
│       │   └── drivers
│       │       ├── Cache_apc.php
│       │       ├── Cache_dummy.php
│       │       ├── Cache_file.php
│       │       └── Cache_memcached.php
│       ├── Calendar.php
│       ├── Cart.php
│       ├── Driver.php
│       ├── Email.php
│       ├── Encrypt.php
│       ├── Form_validation.php
│       ├── Ftp.php
│       ├── Image_lib.php
│       ├── Javascript.php
│       ├── Log.php
│       ├── Migration.php
│       ├── Pagination.php
│       ├── Parser.php
│       ├── Profiler.php
│       ├── Session.php
│       ├── Sha1.php
│       ├── Table.php
│       ├── Trackback.php
│       ├── Typography.php
│       ├── Unit_test.php
│       ├── Upload.php
│       ├── User_agent.php
│       ├── Xmlrpc.php
│       ├── Xmlrpcs.php
│       ├── Zip.php
│       ├── index.html
│       └── javascript
│           └── Jquery.php
├── 安装说明.txt
└── 好例子网_最新仿金蝶电商ERP进销存系统多仓库版.zip

220 directories, 1448 files



实例下载地址

最新仿金蝶电商ERP进销存系统v1修复版

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警