├── .idea ├── misc.xml ├── modules.xml └── vcs.xml ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── 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 │ │ └── 复件 menu(权限菜单).php │ ├── home.php │ ├── inventory.php │ ├── login.php │ ├── prints.php │ ├── report.php │ ├── right.php │ ├── sales.php │ ├── scm │ │ ├── backup.php │ │ ├── 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 ├── libraries │ ├── UploadHandler.php │ ├── excel │ │ ├── excel.php │ │ └── excel │ │ │ └── oleread.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_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-in.php │ │ ├── initOiList-zz.php │ │ ├── initOilist-cx.php │ │ ├── initOilist-out.php │ │ ├── toCBTZPdf.php │ │ ├── toOiPdf.php │ │ └── toOoPdf.php │ ├── invpu │ │ ├── exportInvPu.php │ │ ├── initPur.php │ │ ├── initPurList.php │ │ └── toPdf.php │ ├── invsa │ │ ├── exportInvSa.php │ │ ├── initSale.php │ │ ├── initSaleList.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 │ │ ├── initUnhxList.php │ │ ├── initpay.php │ │ └── initpaylist.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.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 │ ├── 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 │ └── storage │ ├── import.php │ ├── inventory.php │ ├── other-search.php │ └── transfers-search.php ├── data ├── backup │ ├── 201507011121169.sql │ ├── 201705031451552.sql │ └── 201705041903060.sql ├── cache │ ├── ci_account08fb1179720f6b0ed503468e6aa4467e │ ├── ci_account2178a2d4de7f2d82fe443c44c90ed8df │ ├── ci_account_info1652707c1662d33c8ab87c061977aae1 │ ├── ci_address6f61258526d91a372052dd595690b6d7 │ ├── ci_addresse0dd78eea8dcb7bfd8ca165906f1fdca │ ├── ci_admin35addf910a209cb5c54e80ea0ce6c95d │ ├── ci_admin372e337477a150efe2317ab3ef52ae95 │ ├── ci_admin4f8b962c9e60266d6ad62208bf89611d │ ├── ci_admin542c67e0b87288f13ef117a799cb3ace │ ├── ci_admin5abccd902c5356bff75ec2686408bd7d │ ├── ci_admin9d1d08911a1594be9cbf36eb816526f2 │ ├── ci_admina57bb41ac641b904f5051ce1aae8e02c │ ├── ci_admina5cb71e4ae79ba7062c04e68ee4c1ca8 │ ├── ci_adminb2df03030b3c980ddc636d822c218c40 │ ├── ci_admineb6b649c11da7bddd2f46cbb1e192a15 │ ├── ci_assistingprop5707b760704cf7c8fd808f95881a127a │ ├── ci_assistingpropb2b9528758ba290413696d27f8147723 │ ├── ci_assistsku230efb23c6355387eb8d62eedcaa5124 │ ├── ci_assistsku23d28c17b19373b2a286b77692733f0f │ ├── ci_assistsku55d0c5d32085180837202f38e2a926ce │ ├── ci_assistskuc749543f4776c0595b7a5bc784fd5dec │ ├── ci_assistskudbe87541ca3745fa783903a614ba1fc4 │ ├── ci_assistskudf90e7407605629b43d96f245f03c658 │ ├── ci_category002148499dbf95c99d4629116e6c36a1 │ ├── ci_category00b0fb6e7e5843674f611b1b9bd91d5f │ ├── ci_category1a8304467f4ef5d07b59fd44ab37f5e8 │ ├── ci_category28cf9fdb78dd73a698b746d97bbe227f │ ├── ci_category39fc95df020b629d89ec80d206718313 │ ├── ci_category3c4c48937f3ef846765597b84ba7f1f9 │ ├── ci_category3eaf8d4a31bb45cb128c055c09b95b78 │ ├── ci_category467334bb03fb03523b5bb96ac26b5a88 │ ├── ci_category4ca12edb0b9faa65db2d7ecbddd6f56b │ ├── ci_category871b87ac04e3b7e5e24d49c1699e6139 │ ├── ci_category92e773d3cdd56b85c12855d6497ab3dc │ ├── ci_category9332b38417aed5ce8256b26379ee63aa │ ├── ci_category9bba5b768cb43849657a081bfb479043 │ ├── ci_categorya32544c77e9aace8ec31d17ec891346f │ ├── ci_categoryb22c80ad52af83d2dd608ce8f0c8a3d1 │ ├── ci_categoryb3e2a8bc218ac48495e8b7f9a226964a │ ├── ci_categoryc349fdbd10af5ded9cc15173520de7a3 │ ├── ci_categoryc6b47f5fd5e5e21a5801a20bae6177d0 │ ├── ci_categorye308bde87c345cbcaeb6bd6374cbbd00 │ ├── ci_categorye60d004e1120d4a9878c55f1db753cad │ ├── ci_categorye8b3f3a5b08ce5fdd45f4ae758105a4f │ ├── ci_contact18960a5c9699935c9414ca5d5c590af6 │ ├── ci_contact237e80650232d62ed7df80922857dc99 │ ├── ci_contact40a874c15994fd5996225a9c72fc46f6 │ ├── ci_contact8f166b125dd6042b3fa77ec9c140fd4c │ ├── ci_contact9aa065f7af6d7e16e9fc566a3da76681 │ ├── ci_contactac86ed25469d2e290d95545f6a2138bf │ ├── ci_goods6e3003699136e652ea86b9c4a6cf6947 │ ├── ci_goods9e0b88d1a689f1983eebd0bdcbee8d3f │ ├── ci_goods_imgfc5284a619dac9076de067d3889dfb9b │ ├── ci_goodsaf295efa65b0871c1ea6cbd774364586 │ ├── ci_goodsd133a00df451cf3ef9ed4a834516e98a │ ├── ci_goodsd5aacae46f53293b360b8b56fa70d165 │ ├── ci_invoice04cd2ab05e17d8cebe2e58eaf0813d06 │ ├── ci_invoice0d00aa73465630cd8d6e731690f2540f │ ├── ci_invoice12907b273e9ad7a16cd1c1a6c18342e2 │ ├── ci_invoice20aaaf73ef168a9ea0371ff344aeb97d │ ├── ci_invoice22243c9528b8c0ef28ae7009ff3cd8f6 │ ├── ci_invoice2b6c2868bc01cb34463ab74c1de4710b │ ├── ci_invoice38426aa2b7aaab8a7184db860e42a15a │ ├── ci_invoice39df696df7e93f01302fa92bdd7d6f7f │ ├── ci_invoice3a27f58f9ed74a26493a67197c4dfcfb │ ├── ci_invoice42e640c161dc7ac1d901ab12c083ea16 │ ├── ci_invoice530ac1a400cfa7f54cf5e1a7813edb29 │ ├── ci_invoice7c0dbc4e7a280ff18ed6f36c71f16283 │ ├── ci_invoice840521afc8d51f821725efd2cca68a13 │ ├── ci_invoice_info22d5c2bafc16542930568dd761e0ec83 │ ├── ci_invoice_info41b599a9f923d4857836e8251d178b29 │ ├── ci_invoice_info48523a71057ab29d614b232e483877f6 │ ├── ci_invoice_info4ded33fb03474d4edf9a0d530a91a315 │ ├── ci_invoice_info56acbcc1be9f6d31e7aab3ddc1b0fae2 │ ├── ci_invoice_info6c271a4ba2724507afdfbf8d0d0ec536 │ ├── ci_invoice_info79204d9fd77260fced03f63ba4852b8a │ ├── ci_invoice_info8b10b4681eaa64aaf699eefab7dba2e0 │ ├── ci_invoice_info9258131d09575d39e6afe928bc8889b0 │ ├── ci_invoice_infoa05205552fbc2b9f6c12875c15527da3 │ ├── ci_invoice_infoa477e202ab6d2a7aa508afa734722af1 │ ├── ci_invoice_infob0529e9d6d4b8424ac42501de44b9cdd │ ├── ci_invoice_infob6707e23a04dee9388f265eac4f1b0f4 │ ├── ci_invoice_infob76df52327daf1a9ded7dad83d0167f1 │ ├── ci_invoice_infocb1bf9deb704d5dd4c1795977c56ceb0 │ ├── ci_invoice_type1468671e9f8c6dbb6666d4f29e2e81bf │ ├── ci_invoice_type46bd333068b01ae251c221e793ae5d04 │ ├── ci_invoice_type85a63437b014f106d2c5a145f78986f7 │ ├── ci_invoice_typeb02ebfa2be94f796254c5778c991b3c7 │ ├── ci_invoicea4d7538a8f2bd9aff9860763fcad923a │ ├── ci_invoiceb9584a23d110ffb87e5fcbae5f4a3dc7 │ ├── ci_invoicecc608186317580df2fbcae544580ce7e │ ├── ci_invoiced9d68a7eaa8b7f2e40ab0d0e7ef1bb89 │ ├── ci_invoiceebf491834114e57907e6835fee816496 │ ├── ci_invoiceef80d98766db24cd13532cfa26f7c637 │ ├── ci_menu82cd7c1de83e60b3d10569a073aa3511 │ ├── ci_menud4176ce28a1e44bc28563a6a167a1c71 │ ├── ci_optionsf5c88b7da18a90250fa421d589457dbb │ ├── ci_staff56b8edbb63225b03c87b1d5f607e2214 │ ├── ci_staff88f0b7513ee929fadfa5e291fe26c50f │ ├── ci_storage46f7e189bfd8981b00f190bbab2d10b9 │ ├── ci_storage66729b94f86706395936e1fadb4dd01d │ ├── ci_storagef068e11262a4d70e2b734c53c6503993 │ ├── ci_unit22d83d794271a959a63202a5c1aedc09 │ ├── ci_unit56eedf342d20504b898987c443e8b2d4 │ ├── ci_unit7ee16e1660563d709d986313b730f3bb │ ├── ci_unit8cfd23262d1b54812286f676de39a5e8 │ ├── ci_unit96db9baa38d09b2f8b0f8170c4a2f463 │ ├── ci_unittype4c143e8ddbbe52b5070633c9ef61c592 │ └── ci_unittypef152de2acf864428ca08f270ad935429 ├── download │ ├── customer.xls │ ├── goods.xls │ ├── initial.sql │ └── vendor.xls ├── logs │ └── log-2015-06-13.php └── upfile │ └── goods │ ├── 201506211006596296.jpg │ ├── 201506211804581639.png │ ├── 201506231357549729.png │ ├── 201506261046496506.jpg │ ├── 201506281649291557.png │ ├── 201705041233378623.jpg │ └── thumbnail │ ├── 201506211006596296.jpg │ ├── 201506211804581639.png │ ├── 201506231357549729.png │ ├── 201506261046496506.jpg │ ├── 201506281649291557.png │ └── 201705041233378623.jpg ├── index.php ├── install ├── config.ini ├── css │ ├── metinfo.css │ └── reset.css ├── erpv2.sql ├── images │ ├── greencheck.png │ ├── logo.png │ ├── logo1.png │ ├── redx.gif │ ├── stop.gif │ └── yellowcaution.png ├── index.php ├── install.lock ├── js │ ├── IE6-png.js │ ├── install.js │ └── jQuery1.7.2.js ├── lib │ └── base.php ├── set1.php ├── set2.php ├── set3.php └── set4.php ├── mystock-erpv2.iml ├── pic ├── 进销存-表单.png ├── 进销存登陆.png └── 进销存首页.png ├── readme.md ├── statics ├── common │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.js │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ ├── pxgridsicons.eot │ │ ├── pxgridsicons.svg │ │ ├── pxgridsicons.ttf │ │ └── pxgridsicons.woff │ ├── global.css │ ├── images │ │ └── rebc.gif │ └── layui │ │ ├── css │ │ ├── layui.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ ├── icon.png │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.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 │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── lay │ │ ├── dest │ │ │ └── layui.all.js │ │ ├── lib │ │ │ └── jquery.js │ │ └── modules │ │ │ ├── code.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ │ └── layui.js ├── css │ ├── authority.css │ ├── base.css │ ├── base │ │ └── dialog │ │ │ └── icons │ │ │ ├── alert.gif │ │ │ ├── confirm.gif │ │ │ └── loading.gif │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Thumbs.db │ │ │ ├── audit.png │ │ │ ├── body_bg.png │ │ │ ├── checked.png │ │ │ ├── datepicker_icon.png │ │ │ ├── footer_bg.png │ │ │ ├── icon-select.gif │ │ │ ├── icon.png │ │ │ ├── icon_refresh.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 │ │ │ ├── Thumbs.db │ │ │ ├── audit.png │ │ │ ├── body_bg.png │ │ │ ├── checked.png │ │ │ ├── datepicker_icon.png │ │ │ ├── footer_bg.png │ │ │ ├── icon-select.gif │ │ │ ├── icon.png │ │ │ ├── icon_refresh.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 │ │ │ ├── swfupload │ │ │ │ ├── import-btn.png │ │ │ │ ├── swfupload.js │ │ │ │ └── swfupload.swf │ │ │ └── uploader │ │ │ │ ├── jquery.uploader.css │ │ │ │ └── jquery.uploader.js │ │ ├── main.js │ │ ├── plugins.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 │ │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── common.js │ │ ├── global.css │ │ ├── jquery-1.7.1.js │ │ ├── loading.gif │ │ ├── metinfo-min.js │ │ ├── metinfo.css │ │ └── minicheck.js │ └── Images │ │ ├── checkbox.png │ │ ├── loading.gif │ │ ├── login-logo.png │ │ ├── login.gif │ │ ├── loginbox.png │ │ ├── loginbtn.png │ │ ├── loginlogo.png │ │ └── 复件 login-logo.png ├── 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.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 │ │ │ └── tabs.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 │ │ ├── common.js │ │ ├── grid.js │ │ ├── libs │ │ ├── jquery │ │ │ └── jquery-1.10.2.min.js │ │ ├── json2.js │ │ └── json3.min.js │ │ ├── plugins.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 │ │ └── tabs.js └── service │ └── css │ ├── global.css │ └── img │ ├── contact_icons.png │ └── serviceChannel.jpg └── system ├── .htaccess ├── 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 /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/basedata/assist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/assist.php -------------------------------------------------------------------------------- /application/controllers/basedata/assistSku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/assistSku.php -------------------------------------------------------------------------------- /application/controllers/basedata/assistType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/assistType.php -------------------------------------------------------------------------------- /application/controllers/basedata/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/contact.php -------------------------------------------------------------------------------- /application/controllers/basedata/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/customer.php -------------------------------------------------------------------------------- /application/controllers/basedata/deliveryaddr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/deliveryaddr.php -------------------------------------------------------------------------------- /application/controllers/basedata/employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/employee.php -------------------------------------------------------------------------------- /application/controllers/basedata/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/import.php -------------------------------------------------------------------------------- /application/controllers/basedata/inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/inventory.php -------------------------------------------------------------------------------- /application/controllers/basedata/invlocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/invlocation.php -------------------------------------------------------------------------------- /application/controllers/basedata/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/log.php -------------------------------------------------------------------------------- /application/controllers/basedata/resultInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/resultInfo.php -------------------------------------------------------------------------------- /application/controllers/basedata/settAcct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/settAcct.php -------------------------------------------------------------------------------- /application/controllers/basedata/supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/supplier.php -------------------------------------------------------------------------------- /application/controllers/basedata/systemprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/systemprofile.php -------------------------------------------------------------------------------- /application/controllers/basedata/unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/unit.php -------------------------------------------------------------------------------- /application/controllers/basedata/unitType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/unitType.php -------------------------------------------------------------------------------- /application/controllers/basedata/userSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/userSetting.php -------------------------------------------------------------------------------- /application/controllers/basedata/复件 menu(权限菜单).php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/basedata/复件 menu(权限菜单).php -------------------------------------------------------------------------------- /application/controllers/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/home.php -------------------------------------------------------------------------------- /application/controllers/inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/inventory.php -------------------------------------------------------------------------------- /application/controllers/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/login.php -------------------------------------------------------------------------------- /application/controllers/prints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/prints.php -------------------------------------------------------------------------------- /application/controllers/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/report.php -------------------------------------------------------------------------------- /application/controllers/right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/right.php -------------------------------------------------------------------------------- /application/controllers/sales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/sales.php -------------------------------------------------------------------------------- /application/controllers/scm/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/backup.php -------------------------------------------------------------------------------- /application/controllers/scm/invOi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/invOi.php -------------------------------------------------------------------------------- /application/controllers/scm/invPu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/invPu.php -------------------------------------------------------------------------------- /application/controllers/scm/invSa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/invSa.php -------------------------------------------------------------------------------- /application/controllers/scm/invTf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/invTf.php -------------------------------------------------------------------------------- /application/controllers/scm/ori.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/ori.php -------------------------------------------------------------------------------- /application/controllers/scm/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/payment.php -------------------------------------------------------------------------------- /application/controllers/scm/pdImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/pdImport.php -------------------------------------------------------------------------------- /application/controllers/scm/receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/scm/receipt.php -------------------------------------------------------------------------------- /application/controllers/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/service.php -------------------------------------------------------------------------------- /application/controllers/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/settings.php -------------------------------------------------------------------------------- /application/controllers/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/controllers/storage.php -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/core/MY_Loader.php -------------------------------------------------------------------------------- /application/core/MY_URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/core/MY_URI.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/helpers/fun_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/helpers/fun_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/china/admin_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/admin_lang.php -------------------------------------------------------------------------------- /application/language/china/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/calendar_lang.php -------------------------------------------------------------------------------- /application/language/china/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/date_lang.php -------------------------------------------------------------------------------- /application/language/china/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/db_lang.php -------------------------------------------------------------------------------- /application/language/china/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/email_lang.php -------------------------------------------------------------------------------- /application/language/china/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/form_validation_lang.php -------------------------------------------------------------------------------- /application/language/china/front_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/front_lang.php -------------------------------------------------------------------------------- /application/language/china/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/ftp_lang.php -------------------------------------------------------------------------------- /application/language/china/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/imglib_lang.php -------------------------------------------------------------------------------- /application/language/china/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/index.html -------------------------------------------------------------------------------- /application/language/china/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/migration_lang.php -------------------------------------------------------------------------------- /application/language/china/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/number_lang.php -------------------------------------------------------------------------------- /application/language/china/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/profiler_lang.php -------------------------------------------------------------------------------- /application/language/china/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/unit_test_lang.php -------------------------------------------------------------------------------- /application/language/china/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/china/upload_lang.php -------------------------------------------------------------------------------- /application/language/english/admin_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/admin_lang.php -------------------------------------------------------------------------------- /application/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/calendar_lang.php -------------------------------------------------------------------------------- /application/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/date_lang.php -------------------------------------------------------------------------------- /application/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/db_lang.php -------------------------------------------------------------------------------- /application/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/email_lang.php -------------------------------------------------------------------------------- /application/language/english/front_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/front_lang.php -------------------------------------------------------------------------------- /application/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/ftp_lang.php -------------------------------------------------------------------------------- /application/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/imglib_lang.php -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/migration_lang.php -------------------------------------------------------------------------------- /application/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/number_lang.php -------------------------------------------------------------------------------- /application/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/profiler_lang.php -------------------------------------------------------------------------------- /application/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /application/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/language/english/upload_lang.php -------------------------------------------------------------------------------- /application/libraries/UploadHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/UploadHandler.php -------------------------------------------------------------------------------- /application/libraries/excel/excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/excel/excel.php -------------------------------------------------------------------------------- /application/libraries/excel/excel/oleread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/excel/excel/oleread.php -------------------------------------------------------------------------------- /application/libraries/html2pdf/html2pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/html2pdf.php -------------------------------------------------------------------------------- /application/libraries/html2pdf/html2pdf1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/html2pdf1.php -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/ca.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/ca.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/cs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/cs.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/da.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/de.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/en.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/es.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/es.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/fr.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/it.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/it.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/nl.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/pt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/pt.csv -------------------------------------------------------------------------------- /application/libraries/html2pdf/locale/tr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/html2pdf/locale/tr.csv -------------------------------------------------------------------------------- /application/libraries/lib_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/lib_code.php -------------------------------------------------------------------------------- /application/libraries/lib_pinyin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/lib_pinyin.php -------------------------------------------------------------------------------- /application/libraries/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/libraries/session.php -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/common_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/models/common_model.php -------------------------------------------------------------------------------- /application/models/data_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/models/data_model.php -------------------------------------------------------------------------------- /application/models/mysql_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/models/mysql_model.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/header.php -------------------------------------------------------------------------------- /application/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/index.php -------------------------------------------------------------------------------- /application/views/inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/inventory.php -------------------------------------------------------------------------------- /application/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/login.php -------------------------------------------------------------------------------- /application/views/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/main.php -------------------------------------------------------------------------------- /application/views/print/print-settings-voucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/print/print-settings-voucher.php -------------------------------------------------------------------------------- /application/views/report/account-pay-detail-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/account-pay-detail-new.php -------------------------------------------------------------------------------- /application/views/report/bankBalance-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/bankBalance-detail.php -------------------------------------------------------------------------------- /application/views/report/bankBalance-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/bankBalance-exporter.php -------------------------------------------------------------------------------- /application/views/report/cash-bank-journal-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/cash-bank-journal-new.php -------------------------------------------------------------------------------- /application/views/report/contact-debt-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/contact-debt-new.php -------------------------------------------------------------------------------- /application/views/report/contactDebt-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/contactDebt-detail.php -------------------------------------------------------------------------------- /application/views/report/contactDebt-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/contactDebt-exporter.php -------------------------------------------------------------------------------- /application/views/report/customerBalance-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/customerBalance-detail.php -------------------------------------------------------------------------------- /application/views/report/deliverDetail-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/deliverDetail-exporter.php -------------------------------------------------------------------------------- /application/views/report/deliverSummary-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/deliverSummary-exporter.php -------------------------------------------------------------------------------- /application/views/report/fundBalance-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/fundBalance-detail.php -------------------------------------------------------------------------------- /application/views/report/fundBalance-exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/fundBalance-exporter.php -------------------------------------------------------------------------------- /application/views/report/goods-balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/goods-balance.php -------------------------------------------------------------------------------- /application/views/report/goods-flow-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/goods-flow-detail.php -------------------------------------------------------------------------------- /application/views/report/goods-flow-summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/goods-flow-summary.php -------------------------------------------------------------------------------- /application/views/report/invBalance_exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/invBalance_exporter.php -------------------------------------------------------------------------------- /application/views/report/oriDetail_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/oriDetail_export.php -------------------------------------------------------------------------------- /application/views/report/pu-detail-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/pu-detail-new.php -------------------------------------------------------------------------------- /application/views/report/pu-order-tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/pu-order-tracking.php -------------------------------------------------------------------------------- /application/views/report/pu-summary-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/pu-summary-new.php -------------------------------------------------------------------------------- /application/views/report/pu-summary-supply-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/pu-summary-supply-new.php -------------------------------------------------------------------------------- /application/views/report/puDetail-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-detail.php -------------------------------------------------------------------------------- /application/views/report/puDetail-detailExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-detailExporter.php -------------------------------------------------------------------------------- /application/views/report/puDetail-inv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-inv.php -------------------------------------------------------------------------------- /application/views/report/puDetail-invExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-invExporter.php -------------------------------------------------------------------------------- /application/views/report/puDetail-supply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-supply.php -------------------------------------------------------------------------------- /application/views/report/puDetail-supplyExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/puDetail-supplyExporter.php -------------------------------------------------------------------------------- /application/views/report/sales-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/sales-detail.php -------------------------------------------------------------------------------- /application/views/report/sales-order-tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/sales-order-tracking.php -------------------------------------------------------------------------------- /application/views/report/sales-summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/sales-summary.php -------------------------------------------------------------------------------- /application/views/report/salesDetail-customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/salesDetail-customer.php -------------------------------------------------------------------------------- /application/views/report/salesDetail_invExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/salesDetail_invExporter.php -------------------------------------------------------------------------------- /application/views/report/supplierBalance-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/report/supplierBalance-detail.php -------------------------------------------------------------------------------- /application/views/sales/sales-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/sales/sales-search.php -------------------------------------------------------------------------------- /application/views/scm/invOi/exportInvCadj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/exportInvCadj.php -------------------------------------------------------------------------------- /application/views/scm/invOi/exportInvOi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/exportInvOi.php -------------------------------------------------------------------------------- /application/views/scm/invOi/exportInvOo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/exportInvOo.php -------------------------------------------------------------------------------- /application/views/scm/invOi/exportToPD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/exportToPD.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOi-cbtz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOi-cbtz.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOi-cx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOi-cx.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOi-in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOi-in.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOi-out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOi-out.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOi-zz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOi-zz.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOiList-cbtz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOiList-cbtz.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOiList-in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOiList-in.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOiList-zz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOiList-zz.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOilist-cx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOilist-cx.php -------------------------------------------------------------------------------- /application/views/scm/invOi/initOilist-out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/initOilist-out.php -------------------------------------------------------------------------------- /application/views/scm/invOi/toCBTZPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/toCBTZPdf.php -------------------------------------------------------------------------------- /application/views/scm/invOi/toOiPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/toOiPdf.php -------------------------------------------------------------------------------- /application/views/scm/invOi/toOoPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invOi/toOoPdf.php -------------------------------------------------------------------------------- /application/views/scm/invpu/exportInvPu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invpu/exportInvPu.php -------------------------------------------------------------------------------- /application/views/scm/invpu/initPur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invpu/initPur.php -------------------------------------------------------------------------------- /application/views/scm/invpu/initPurList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invpu/initPurList.php -------------------------------------------------------------------------------- /application/views/scm/invpu/toPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invpu/toPdf.php -------------------------------------------------------------------------------- /application/views/scm/invsa/exportInvSa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invsa/exportInvSa.php -------------------------------------------------------------------------------- /application/views/scm/invsa/initSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invsa/initSale.php -------------------------------------------------------------------------------- /application/views/scm/invsa/initSaleList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invsa/initSaleList.php -------------------------------------------------------------------------------- /application/views/scm/invsa/toPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invsa/toPdf.php -------------------------------------------------------------------------------- /application/views/scm/invtf/exportInvTf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invtf/exportInvTf.php -------------------------------------------------------------------------------- /application/views/scm/invtf/initTf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invtf/initTf.php -------------------------------------------------------------------------------- /application/views/scm/invtf/initTfList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invtf/initTfList.php -------------------------------------------------------------------------------- /application/views/scm/invtf/toPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/invtf/toPdf.php -------------------------------------------------------------------------------- /application/views/scm/ori/exportExp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/exportExp.php -------------------------------------------------------------------------------- /application/views/scm/ori/exportInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/exportInc.php -------------------------------------------------------------------------------- /application/views/scm/ori/initExp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/initExp.php -------------------------------------------------------------------------------- /application/views/scm/ori/initExpList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/initExpList.php -------------------------------------------------------------------------------- /application/views/scm/ori/initInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/initInc.php -------------------------------------------------------------------------------- /application/views/scm/ori/initIncList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/ori/initIncList.php -------------------------------------------------------------------------------- /application/views/scm/payment/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/payment/export.php -------------------------------------------------------------------------------- /application/views/scm/payment/initUnhxList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/payment/initUnhxList.php -------------------------------------------------------------------------------- /application/views/scm/payment/initpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/payment/initpay.php -------------------------------------------------------------------------------- /application/views/scm/payment/initpaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/payment/initpaylist.php -------------------------------------------------------------------------------- /application/views/scm/receipt/exportReceipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/receipt/exportReceipt.php -------------------------------------------------------------------------------- /application/views/scm/receipt/initReceipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/receipt/initReceipt.php -------------------------------------------------------------------------------- /application/views/scm/receipt/initReceiptList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/receipt/initReceiptList.php -------------------------------------------------------------------------------- /application/views/scm/receipt/initUnhxList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/scm/receipt/initUnhxList.php -------------------------------------------------------------------------------- /application/views/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/service.php -------------------------------------------------------------------------------- /application/views/set_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/set_password.php -------------------------------------------------------------------------------- /application/views/settings/addedServiceList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/addedServiceList.php -------------------------------------------------------------------------------- /application/views/settings/addressmanage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/addressmanage.php -------------------------------------------------------------------------------- /application/views/settings/assistingProp-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/assistingProp-batch.php -------------------------------------------------------------------------------- /application/views/settings/assistingprop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/assistingprop.php -------------------------------------------------------------------------------- /application/views/settings/authority-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/authority-new.php -------------------------------------------------------------------------------- /application/views/settings/authority-setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/authority-setting.php -------------------------------------------------------------------------------- /application/views/settings/authority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/authority.php -------------------------------------------------------------------------------- /application/views/settings/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/backup.php -------------------------------------------------------------------------------- /application/views/settings/category-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/category-list.php -------------------------------------------------------------------------------- /application/views/settings/choose-account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/choose-account.php -------------------------------------------------------------------------------- /application/views/settings/customer-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/customer-batch.php -------------------------------------------------------------------------------- /application/views/settings/customer-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/customer-export.php -------------------------------------------------------------------------------- /application/views/settings/customer-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/customer-list.php -------------------------------------------------------------------------------- /application/views/settings/customer-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/customer-manage.php -------------------------------------------------------------------------------- /application/views/settings/fileupload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/fileupload.php -------------------------------------------------------------------------------- /application/views/settings/fileupload22.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/fileupload22.php -------------------------------------------------------------------------------- /application/views/settings/goods-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/goods-batch.php -------------------------------------------------------------------------------- /application/views/settings/goods-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/goods-export.php -------------------------------------------------------------------------------- /application/views/settings/goods-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/goods-list.php -------------------------------------------------------------------------------- /application/views/settings/goods-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/goods-manage.php -------------------------------------------------------------------------------- /application/views/settings/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/import.php -------------------------------------------------------------------------------- /application/views/settings/inventory-warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/inventory-warning.php -------------------------------------------------------------------------------- /application/views/settings/log-initloglist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/log-initloglist.php -------------------------------------------------------------------------------- /application/views/settings/prop-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/prop-list.php -------------------------------------------------------------------------------- /application/views/settings/propmanage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/propmanage.php -------------------------------------------------------------------------------- /application/views/settings/resultInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/resultInfo.php -------------------------------------------------------------------------------- /application/views/settings/saler-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/saler-batch.php -------------------------------------------------------------------------------- /application/views/settings/select-customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/select-customer.php -------------------------------------------------------------------------------- /application/views/settings/set_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/set_password.php -------------------------------------------------------------------------------- /application/views/settings/settlement-account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/settlement-account.php -------------------------------------------------------------------------------- /application/views/settings/shippingaddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/shippingaddress.php -------------------------------------------------------------------------------- /application/views/settings/shippingaddressmanage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/shippingaddressmanage.php -------------------------------------------------------------------------------- /application/views/settings/staff-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/staff-list.php -------------------------------------------------------------------------------- /application/views/settings/staff-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/staff-manage.php -------------------------------------------------------------------------------- /application/views/settings/storage-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/storage-batch.php -------------------------------------------------------------------------------- /application/views/settings/storage-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/storage-list.php -------------------------------------------------------------------------------- /application/views/settings/storage-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/storage-manage.php -------------------------------------------------------------------------------- /application/views/settings/supplier-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/supplier-batch.php -------------------------------------------------------------------------------- /application/views/settings/system-parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/system-parameter.php -------------------------------------------------------------------------------- /application/views/settings/unit-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/unit-list.php -------------------------------------------------------------------------------- /application/views/settings/unit-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/unit-manage.php -------------------------------------------------------------------------------- /application/views/settings/unitgroup-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/unitgroup-manage.php -------------------------------------------------------------------------------- /application/views/settings/vendor-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/vendor-export.php -------------------------------------------------------------------------------- /application/views/settings/vendor-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/vendor-list.php -------------------------------------------------------------------------------- /application/views/settings/vendor-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/settings/vendor-manage.php -------------------------------------------------------------------------------- /application/views/storage/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/storage/import.php -------------------------------------------------------------------------------- /application/views/storage/inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/storage/inventory.php -------------------------------------------------------------------------------- /application/views/storage/other-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/storage/other-search.php -------------------------------------------------------------------------------- /application/views/storage/transfers-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/application/views/storage/transfers-search.php -------------------------------------------------------------------------------- /data/backup/201507011121169.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/backup/201507011121169.sql -------------------------------------------------------------------------------- /data/backup/201705031451552.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/backup/201705031451552.sql -------------------------------------------------------------------------------- /data/backup/201705041903060.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/backup/201705041903060.sql -------------------------------------------------------------------------------- /data/cache/ci_admin35addf910a209cb5c54e80ea0ce6c95d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin35addf910a209cb5c54e80ea0ce6c95d -------------------------------------------------------------------------------- /data/cache/ci_admin372e337477a150efe2317ab3ef52ae95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin372e337477a150efe2317ab3ef52ae95 -------------------------------------------------------------------------------- /data/cache/ci_admin4f8b962c9e60266d6ad62208bf89611d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin4f8b962c9e60266d6ad62208bf89611d -------------------------------------------------------------------------------- /data/cache/ci_admin542c67e0b87288f13ef117a799cb3ace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin542c67e0b87288f13ef117a799cb3ace -------------------------------------------------------------------------------- /data/cache/ci_admin5abccd902c5356bff75ec2686408bd7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin5abccd902c5356bff75ec2686408bd7d -------------------------------------------------------------------------------- /data/cache/ci_admin9d1d08911a1594be9cbf36eb816526f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admin9d1d08911a1594be9cbf36eb816526f2 -------------------------------------------------------------------------------- /data/cache/ci_admina57bb41ac641b904f5051ce1aae8e02c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admina57bb41ac641b904f5051ce1aae8e02c -------------------------------------------------------------------------------- /data/cache/ci_admina5cb71e4ae79ba7062c04e68ee4c1ca8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admina5cb71e4ae79ba7062c04e68ee4c1ca8 -------------------------------------------------------------------------------- /data/cache/ci_adminb2df03030b3c980ddc636d822c218c40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_adminb2df03030b3c980ddc636d822c218c40 -------------------------------------------------------------------------------- /data/cache/ci_admineb6b649c11da7bddd2f46cbb1e192a15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_admineb6b649c11da7bddd2f46cbb1e192a15 -------------------------------------------------------------------------------- /data/cache/ci_goods6e3003699136e652ea86b9c4a6cf6947: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_goods6e3003699136e652ea86b9c4a6cf6947 -------------------------------------------------------------------------------- /data/cache/ci_goods9e0b88d1a689f1983eebd0bdcbee8d3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_goods9e0b88d1a689f1983eebd0bdcbee8d3f -------------------------------------------------------------------------------- /data/cache/ci_goodsaf295efa65b0871c1ea6cbd774364586: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_goodsaf295efa65b0871c1ea6cbd774364586 -------------------------------------------------------------------------------- /data/cache/ci_goodsd133a00df451cf3ef9ed4a834516e98a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_goodsd133a00df451cf3ef9ed4a834516e98a -------------------------------------------------------------------------------- /data/cache/ci_goodsd5aacae46f53293b360b8b56fa70d165: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_goodsd5aacae46f53293b360b8b56fa70d165 -------------------------------------------------------------------------------- /data/cache/ci_menu82cd7c1de83e60b3d10569a073aa3511: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_menu82cd7c1de83e60b3d10569a073aa3511 -------------------------------------------------------------------------------- /data/cache/ci_menud4176ce28a1e44bc28563a6a167a1c71: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_menud4176ce28a1e44bc28563a6a167a1c71 -------------------------------------------------------------------------------- /data/cache/ci_staff56b8edbb63225b03c87b1d5f607e2214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_staff56b8edbb63225b03c87b1d5f607e2214 -------------------------------------------------------------------------------- /data/cache/ci_staff88f0b7513ee929fadfa5e291fe26c50f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_staff88f0b7513ee929fadfa5e291fe26c50f -------------------------------------------------------------------------------- /data/cache/ci_unit22d83d794271a959a63202a5c1aedc09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_unit22d83d794271a959a63202a5c1aedc09 -------------------------------------------------------------------------------- /data/cache/ci_unit56eedf342d20504b898987c443e8b2d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_unit56eedf342d20504b898987c443e8b2d4 -------------------------------------------------------------------------------- /data/cache/ci_unit7ee16e1660563d709d986313b730f3bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/cache/ci_unit7ee16e1660563d709d986313b730f3bb -------------------------------------------------------------------------------- /data/download/customer.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/download/customer.xls -------------------------------------------------------------------------------- /data/download/goods.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/download/goods.xls -------------------------------------------------------------------------------- /data/download/initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/download/initial.sql -------------------------------------------------------------------------------- /data/download/vendor.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/download/vendor.xls -------------------------------------------------------------------------------- /data/logs/log-2015-06-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/logs/log-2015-06-13.php -------------------------------------------------------------------------------- /data/upfile/goods/201506211006596296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201506211006596296.jpg -------------------------------------------------------------------------------- /data/upfile/goods/201506211804581639.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201506211804581639.png -------------------------------------------------------------------------------- /data/upfile/goods/201506231357549729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201506231357549729.png -------------------------------------------------------------------------------- /data/upfile/goods/201506261046496506.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201506261046496506.jpg -------------------------------------------------------------------------------- /data/upfile/goods/201506281649291557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201506281649291557.png -------------------------------------------------------------------------------- /data/upfile/goods/201705041233378623.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/data/upfile/goods/201705041233378623.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/index.php -------------------------------------------------------------------------------- /install/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/config.ini -------------------------------------------------------------------------------- /install/css/metinfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/css/metinfo.css -------------------------------------------------------------------------------- /install/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/css/reset.css -------------------------------------------------------------------------------- /install/erpv2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/erpv2.sql -------------------------------------------------------------------------------- /install/images/greencheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/greencheck.png -------------------------------------------------------------------------------- /install/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/logo.png -------------------------------------------------------------------------------- /install/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/logo1.png -------------------------------------------------------------------------------- /install/images/redx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/redx.gif -------------------------------------------------------------------------------- /install/images/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/stop.gif -------------------------------------------------------------------------------- /install/images/yellowcaution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/images/yellowcaution.png -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/index.php -------------------------------------------------------------------------------- /install/install.lock: -------------------------------------------------------------------------------- 1 | 程序已正确安装,重新安装请删除本文件, -------------------------------------------------------------------------------- /install/js/IE6-png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/js/IE6-png.js -------------------------------------------------------------------------------- /install/js/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/js/install.js -------------------------------------------------------------------------------- /install/js/jQuery1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/js/jQuery1.7.2.js -------------------------------------------------------------------------------- /install/lib/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/lib/base.php -------------------------------------------------------------------------------- /install/set1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/set1.php -------------------------------------------------------------------------------- /install/set2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/set2.php -------------------------------------------------------------------------------- /install/set3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/set3.php -------------------------------------------------------------------------------- /install/set4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/install/set4.php -------------------------------------------------------------------------------- /mystock-erpv2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/mystock-erpv2.iml -------------------------------------------------------------------------------- /pic/进销存-表单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/pic/进销存-表单.png -------------------------------------------------------------------------------- /pic/进销存登陆.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/pic/进销存登陆.png -------------------------------------------------------------------------------- /pic/进销存首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/pic/进销存首页.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/readme.md -------------------------------------------------------------------------------- /statics/common/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /statics/common/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /statics/common/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /statics/common/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /statics/common/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /statics/common/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /statics/common/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/bootstrap/js/npm.js -------------------------------------------------------------------------------- /statics/common/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/FontAwesome.otf -------------------------------------------------------------------------------- /statics/common/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /statics/common/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /statics/common/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /statics/common/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /statics/common/font/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /statics/common/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.css -------------------------------------------------------------------------------- /statics/common/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.eot -------------------------------------------------------------------------------- /statics/common/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.js -------------------------------------------------------------------------------- /statics/common/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.svg -------------------------------------------------------------------------------- /statics/common/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.ttf -------------------------------------------------------------------------------- /statics/common/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/iconfont.woff -------------------------------------------------------------------------------- /statics/common/font/pxgridsicons.eot: -------------------------------------------------------------------------------- 1 | L? -------------------------------------------------------------------------------- /statics/common/font/pxgridsicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/pxgridsicons.svg -------------------------------------------------------------------------------- /statics/common/font/pxgridsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/pxgridsicons.ttf -------------------------------------------------------------------------------- /statics/common/font/pxgridsicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/font/pxgridsicons.woff -------------------------------------------------------------------------------- /statics/common/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/global.css -------------------------------------------------------------------------------- /statics/common/images/rebc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/images/rebc.gif -------------------------------------------------------------------------------- /statics/common/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/css/layui.css -------------------------------------------------------------------------------- /statics/common/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/css/modules/code.css -------------------------------------------------------------------------------- /statics/common/layui/css/modules/laydate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/css/modules/laydate/icon.png -------------------------------------------------------------------------------- /statics/common/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/font/iconfont.eot -------------------------------------------------------------------------------- /statics/common/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/font/iconfont.svg -------------------------------------------------------------------------------- /statics/common/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /statics/common/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/font/iconfont.woff -------------------------------------------------------------------------------- /statics/common/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/0.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/1.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/10.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/11.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/12.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/13.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/14.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/15.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/16.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/17.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/18.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/19.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/2.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/20.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/21.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/22.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/23.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/24.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/25.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/26.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/27.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/28.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/29.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/3.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/30.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/31.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/32.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/33.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/34.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/35.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/36.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/37.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/38.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/39.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/4.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/40.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/41.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/42.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/43.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/44.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/45.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/46.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/47.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/48.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/49.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/5.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/50.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/51.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/52.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/53.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/54.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/55.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/56.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/57.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/58.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/59.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/6.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/60.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/61.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/62.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/63.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/64.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/65.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/66.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/67.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/68.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/69.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/7.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/70.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/71.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/8.gif -------------------------------------------------------------------------------- /statics/common/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/images/face/9.gif -------------------------------------------------------------------------------- /statics/common/layui/lay/dest/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/dest/layui.all.js -------------------------------------------------------------------------------- /statics/common/layui/lay/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/lib/jquery.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/code.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/element.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/form.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /statics/common/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/lay/modules/util.js -------------------------------------------------------------------------------- /statics/common/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/common/layui/layui.js -------------------------------------------------------------------------------- /statics/css/authority.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/authority.css -------------------------------------------------------------------------------- /statics/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/base.css -------------------------------------------------------------------------------- /statics/css/base/dialog/icons/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/base/dialog/icons/alert.gif -------------------------------------------------------------------------------- /statics/css/base/dialog/icons/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/base/dialog/icons/confirm.gif -------------------------------------------------------------------------------- /statics/css/base/dialog/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/base/dialog/icons/loading.gif -------------------------------------------------------------------------------- /statics/css/blue/bills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/bills.css -------------------------------------------------------------------------------- /statics/css/blue/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/default.css -------------------------------------------------------------------------------- /statics/css/blue/img/audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/audit.png -------------------------------------------------------------------------------- /statics/css/blue/img/body_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/body_bg.png -------------------------------------------------------------------------------- /statics/css/blue/img/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/checked.png -------------------------------------------------------------------------------- /statics/css/blue/img/datepicker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/datepicker_icon.png -------------------------------------------------------------------------------- /statics/css/blue/img/footer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/footer_bg.png -------------------------------------------------------------------------------- /statics/css/blue/img/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/icon-select.gif -------------------------------------------------------------------------------- /statics/css/blue/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/icon.png -------------------------------------------------------------------------------- /statics/css/blue/img/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/icon_refresh.png -------------------------------------------------------------------------------- /statics/css/blue/img/index_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/index_bg.png -------------------------------------------------------------------------------- /statics/css/blue/img/index_h2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/index_h2_bg.png -------------------------------------------------------------------------------- /statics/css/blue/img/index_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/index_icons.png -------------------------------------------------------------------------------- /statics/css/blue/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/line_conn.gif -------------------------------------------------------------------------------- /statics/css/blue/img/nav_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/nav_spr.png -------------------------------------------------------------------------------- /statics/css/blue/img/select_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/select_skin.png -------------------------------------------------------------------------------- /statics/css/blue/img/side_rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/side_rp.png -------------------------------------------------------------------------------- /statics/css/blue/img/spr_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/spr_icons.png -------------------------------------------------------------------------------- /statics/css/blue/img/tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/tab_bg.png -------------------------------------------------------------------------------- /statics/css/blue/img/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/tab_close.png -------------------------------------------------------------------------------- /statics/css/blue/img/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/ui-icons.png -------------------------------------------------------------------------------- /statics/css/blue/img/ui-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/ui-th.png -------------------------------------------------------------------------------- /statics/css/blue/img/ui1-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/ui1-icons.png -------------------------------------------------------------------------------- /statics/css/blue/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/img/zTreeStandard.png -------------------------------------------------------------------------------- /statics/css/blue/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/index.css -------------------------------------------------------------------------------- /statics/css/blue/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/blue/ui.min.css -------------------------------------------------------------------------------- /statics/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/common.css -------------------------------------------------------------------------------- /statics/css/default/bills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/bills.css -------------------------------------------------------------------------------- /statics/css/default/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/default.css -------------------------------------------------------------------------------- /statics/css/default/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/Thumbs.db -------------------------------------------------------------------------------- /statics/css/default/img/audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/audit.png -------------------------------------------------------------------------------- /statics/css/default/img/body_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/body_bg.png -------------------------------------------------------------------------------- /statics/css/default/img/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/checked.png -------------------------------------------------------------------------------- /statics/css/default/img/datepicker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/datepicker_icon.png -------------------------------------------------------------------------------- /statics/css/default/img/footer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/footer_bg.png -------------------------------------------------------------------------------- /statics/css/default/img/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/icon-select.gif -------------------------------------------------------------------------------- /statics/css/default/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/icon.png -------------------------------------------------------------------------------- /statics/css/default/img/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/icon_refresh.png -------------------------------------------------------------------------------- /statics/css/default/img/index_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/index_bg.png -------------------------------------------------------------------------------- /statics/css/default/img/index_h2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/index_h2_bg.png -------------------------------------------------------------------------------- /statics/css/default/img/index_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/index_icons.png -------------------------------------------------------------------------------- /statics/css/default/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/line_conn.gif -------------------------------------------------------------------------------- /statics/css/default/img/nav_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/nav_spr.png -------------------------------------------------------------------------------- /statics/css/default/img/select_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/select_skin.png -------------------------------------------------------------------------------- /statics/css/default/img/side_rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/side_rp.png -------------------------------------------------------------------------------- /statics/css/default/img/side_rp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/side_rp2.png -------------------------------------------------------------------------------- /statics/css/default/img/spr_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/spr_icons.png -------------------------------------------------------------------------------- /statics/css/default/img/tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/tab_bg.png -------------------------------------------------------------------------------- /statics/css/default/img/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/tab_close.png -------------------------------------------------------------------------------- /statics/css/default/img/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/ui-icons.png -------------------------------------------------------------------------------- /statics/css/default/img/ui-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/ui-th.png -------------------------------------------------------------------------------- /statics/css/default/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/img/zTreeStandard.png -------------------------------------------------------------------------------- /statics/css/default/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/index.css -------------------------------------------------------------------------------- /statics/css/default/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/default/ui.min.css -------------------------------------------------------------------------------- /statics/css/green/bills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/bills.css -------------------------------------------------------------------------------- /statics/css/green/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/default.css -------------------------------------------------------------------------------- /statics/css/green/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/Thumbs.db -------------------------------------------------------------------------------- /statics/css/green/img/audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/audit.png -------------------------------------------------------------------------------- /statics/css/green/img/body_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/body_bg.png -------------------------------------------------------------------------------- /statics/css/green/img/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/checked.png -------------------------------------------------------------------------------- /statics/css/green/img/datepicker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/datepicker_icon.png -------------------------------------------------------------------------------- /statics/css/green/img/footer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/footer_bg.png -------------------------------------------------------------------------------- /statics/css/green/img/icon-select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/icon-select.gif -------------------------------------------------------------------------------- /statics/css/green/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/icon.png -------------------------------------------------------------------------------- /statics/css/green/img/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/icon_refresh.png -------------------------------------------------------------------------------- /statics/css/green/img/index_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/index_bg.png -------------------------------------------------------------------------------- /statics/css/green/img/index_h2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/index_h2_bg.png -------------------------------------------------------------------------------- /statics/css/green/img/index_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/index_icons.png -------------------------------------------------------------------------------- /statics/css/green/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/line_conn.gif -------------------------------------------------------------------------------- /statics/css/green/img/nav_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/nav_spr.png -------------------------------------------------------------------------------- /statics/css/green/img/select_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/select_skin.png -------------------------------------------------------------------------------- /statics/css/green/img/side_rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/side_rp.png -------------------------------------------------------------------------------- /statics/css/green/img/spr_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/spr_icons.png -------------------------------------------------------------------------------- /statics/css/green/img/tab_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/tab_bg.png -------------------------------------------------------------------------------- /statics/css/green/img/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/tab_close.png -------------------------------------------------------------------------------- /statics/css/green/img/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/ui-icons.png -------------------------------------------------------------------------------- /statics/css/green/img/ui-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/ui-th.png -------------------------------------------------------------------------------- /statics/css/green/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/img/zTreeStandard.png -------------------------------------------------------------------------------- /statics/css/green/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/index.css -------------------------------------------------------------------------------- /statics/css/green/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/green/ui.min.css -------------------------------------------------------------------------------- /statics/css/img/close_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/close_all.png -------------------------------------------------------------------------------- /statics/css/img/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/dot.gif -------------------------------------------------------------------------------- /statics/css/img/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/indicator.gif -------------------------------------------------------------------------------- /statics/css/img/ligerui/bigloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ligerui/bigloading.gif -------------------------------------------------------------------------------- /statics/css/img/ligerui/menu-item-over-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ligerui/menu-item-over-l.gif -------------------------------------------------------------------------------- /statics/css/img/ligerui/menu-item-over-m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ligerui/menu-item-over-m.gif -------------------------------------------------------------------------------- /statics/css/img/ligerui/menu-item-over-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ligerui/menu-item-over-r.gif -------------------------------------------------------------------------------- /statics/css/img/ligerui/menu-line-y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ligerui/menu-line-y.gif -------------------------------------------------------------------------------- /statics/css/img/no_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/no_query.png -------------------------------------------------------------------------------- /statics/css/img/page_spr_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/page_spr_icons.png -------------------------------------------------------------------------------- /statics/css/img/select_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/select_skin.png -------------------------------------------------------------------------------- /statics/css/img/spr_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/spr_icons.png -------------------------------------------------------------------------------- /statics/css/img/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/ui-icons.png -------------------------------------------------------------------------------- /statics/css/img/value-added-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/img/value-added-icon.png -------------------------------------------------------------------------------- /statics/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/print.css -------------------------------------------------------------------------------- /statics/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/css/report.css -------------------------------------------------------------------------------- /statics/js/common/areasData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/areasData.php -------------------------------------------------------------------------------- /statics/js/common/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/grid.js -------------------------------------------------------------------------------- /statics/js/common/libs/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/libs/json2.js -------------------------------------------------------------------------------- /statics/js/common/libs/swfupload/import-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/libs/swfupload/import-btn.png -------------------------------------------------------------------------------- /statics/js/common/libs/swfupload/swfupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/libs/swfupload/swfupload.js -------------------------------------------------------------------------------- /statics/js/common/libs/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/libs/swfupload/swfupload.swf -------------------------------------------------------------------------------- /statics/js/common/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/main.js -------------------------------------------------------------------------------- /statics/js/common/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins.js -------------------------------------------------------------------------------- /statics/js/common/plugins/datepicker/pikaday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/datepicker/pikaday.js -------------------------------------------------------------------------------- /statics/js/common/plugins/fileupload/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/fileupload/css/demo.css -------------------------------------------------------------------------------- /statics/js/common/plugins/fileupload/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/fileupload/js/app.js -------------------------------------------------------------------------------- /statics/js/common/plugins/fileupload/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/fileupload/js/main.js -------------------------------------------------------------------------------- /statics/js/common/plugins/jquery.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/jquery.dialog.js -------------------------------------------------------------------------------- /statics/js/common/plugins/jquery.print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/plugins/jquery.print.js -------------------------------------------------------------------------------- /statics/js/common/seajs/2.1.1/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/common/seajs/2.1.1/sea.js -------------------------------------------------------------------------------- /statics/js/dist/accountPayDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/accountPayDetail.js -------------------------------------------------------------------------------- /statics/js/dist/accountPayDetailNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/accountPayDetailNew.js -------------------------------------------------------------------------------- /statics/js/dist/accountProceedsDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/accountProceedsDetail.js -------------------------------------------------------------------------------- /statics/js/dist/accountProceedsDetailNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/accountProceedsDetailNew.js -------------------------------------------------------------------------------- /statics/js/dist/addedServiceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/addedServiceList.js -------------------------------------------------------------------------------- /statics/js/dist/addressManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/addressManage.js -------------------------------------------------------------------------------- /statics/js/dist/adjustment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/adjustment.js -------------------------------------------------------------------------------- /statics/js/dist/adjustmentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/adjustmentList.js -------------------------------------------------------------------------------- /statics/js/dist/advSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/advSearch.js -------------------------------------------------------------------------------- /statics/js/dist/assemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/assemble.js -------------------------------------------------------------------------------- /statics/js/dist/assembleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/assembleList.js -------------------------------------------------------------------------------- /statics/js/dist/assistingProp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/assistingProp.js -------------------------------------------------------------------------------- /statics/js/dist/assistingPropBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/assistingPropBatch.js -------------------------------------------------------------------------------- /statics/js/dist/assistingPropGroupManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/assistingPropGroupManage.js -------------------------------------------------------------------------------- /statics/js/dist/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/backup.js -------------------------------------------------------------------------------- /statics/js/dist/cashBankJournal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/cashBankJournal.js -------------------------------------------------------------------------------- /statics/js/dist/cashBankJournalNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/cashBankJournalNew.js -------------------------------------------------------------------------------- /statics/js/dist/categoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/categoryList.js -------------------------------------------------------------------------------- /statics/js/dist/chooseAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/chooseAccount.js -------------------------------------------------------------------------------- /statics/js/dist/contact-debt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/contact-debt.js -------------------------------------------------------------------------------- /statics/js/dist/contactDebtNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/contactDebtNew.js -------------------------------------------------------------------------------- /statics/js/dist/customerBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/customerBatch.js -------------------------------------------------------------------------------- /statics/js/dist/customerList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/customerList.js -------------------------------------------------------------------------------- /statics/js/dist/customerManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/customerManage.js -------------------------------------------------------------------------------- /statics/js/dist/customersReconciliation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/customersReconciliation.js -------------------------------------------------------------------------------- /statics/js/dist/customersReconciliationNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/customersReconciliationNew.js -------------------------------------------------------------------------------- /statics/js/dist/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/default.js -------------------------------------------------------------------------------- /statics/js/dist/disassemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/disassemble.js -------------------------------------------------------------------------------- /statics/js/dist/disassembleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/disassembleList.js -------------------------------------------------------------------------------- /statics/js/dist/fileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/fileUpload.js -------------------------------------------------------------------------------- /statics/js/dist/goodsBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsBalance.js -------------------------------------------------------------------------------- /statics/js/dist/goodsBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsBatch.js -------------------------------------------------------------------------------- /statics/js/dist/goodsFlowDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsFlowDetail.js -------------------------------------------------------------------------------- /statics/js/dist/goodsFlowSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsFlowSummary.js -------------------------------------------------------------------------------- /statics/js/dist/goodsInventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsInventory.js -------------------------------------------------------------------------------- /statics/js/dist/goodsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsList.js -------------------------------------------------------------------------------- /statics/js/dist/goodsManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/goodsManage.js -------------------------------------------------------------------------------- /statics/js/dist/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/inventory.js -------------------------------------------------------------------------------- /statics/js/dist/operationLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/operationLog.js -------------------------------------------------------------------------------- /statics/js/dist/other-expense-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/other-expense-list.js -------------------------------------------------------------------------------- /statics/js/dist/other-expense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/other-expense.js -------------------------------------------------------------------------------- /statics/js/dist/other-income-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/other-income-list.js -------------------------------------------------------------------------------- /statics/js/dist/other-income.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/other-income.js -------------------------------------------------------------------------------- /statics/js/dist/otherIncomeExpenseDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/otherIncomeExpenseDetail.js -------------------------------------------------------------------------------- /statics/js/dist/otherOutbound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/otherOutbound.js -------------------------------------------------------------------------------- /statics/js/dist/otherOutboundList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/otherOutboundList.js -------------------------------------------------------------------------------- /statics/js/dist/otherWarehouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/otherWarehouse.js -------------------------------------------------------------------------------- /statics/js/dist/otherWarehouseList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/otherWarehouseList.js -------------------------------------------------------------------------------- /statics/js/dist/parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/parameter.js -------------------------------------------------------------------------------- /statics/js/dist/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/payment.js -------------------------------------------------------------------------------- /statics/js/dist/paymentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/paymentList.js -------------------------------------------------------------------------------- /statics/js/dist/propList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/propList.js -------------------------------------------------------------------------------- /statics/js/dist/propManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/propManage.js -------------------------------------------------------------------------------- /statics/js/dist/pu-summary-supply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/pu-summary-supply.js -------------------------------------------------------------------------------- /statics/js/dist/pu-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/pu-summary.js -------------------------------------------------------------------------------- /statics/js/dist/puDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/puDetail.js -------------------------------------------------------------------------------- /statics/js/dist/puDetailNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/puDetailNew.js -------------------------------------------------------------------------------- /statics/js/dist/puOrderTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/puOrderTracking.js -------------------------------------------------------------------------------- /statics/js/dist/puSummaryNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/puSummaryNew.js -------------------------------------------------------------------------------- /statics/js/dist/puSummarySupplyNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/puSummarySupplyNew.js -------------------------------------------------------------------------------- /statics/js/dist/purchase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/purchase.js -------------------------------------------------------------------------------- /statics/js/dist/purchaseList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/purchaseList.js -------------------------------------------------------------------------------- /statics/js/dist/purchaseOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/purchaseOrder.js -------------------------------------------------------------------------------- /statics/js/dist/purchaseOrderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/purchaseOrderList.js -------------------------------------------------------------------------------- /statics/js/dist/receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/receipt.js -------------------------------------------------------------------------------- /statics/js/dist/receiptList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/receiptList.js -------------------------------------------------------------------------------- /statics/js/dist/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/register.js -------------------------------------------------------------------------------- /statics/js/dist/salerBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salerBatch.js -------------------------------------------------------------------------------- /statics/js/dist/sales-summary-customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/sales-summary-customer.js -------------------------------------------------------------------------------- /statics/js/dist/sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/sales.js -------------------------------------------------------------------------------- /statics/js/dist/salesDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesDetail.js -------------------------------------------------------------------------------- /statics/js/dist/salesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesList.js -------------------------------------------------------------------------------- /statics/js/dist/salesOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesOrder.js -------------------------------------------------------------------------------- /statics/js/dist/salesOrderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesOrderList.js -------------------------------------------------------------------------------- /statics/js/dist/salesOrderTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesOrderTracking.js -------------------------------------------------------------------------------- /statics/js/dist/salesSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesSummary.js -------------------------------------------------------------------------------- /statics/js/dist/salesSummaryCustomerNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/salesSummaryCustomerNew.js -------------------------------------------------------------------------------- /statics/js/dist/selectCustomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/selectCustomer.js -------------------------------------------------------------------------------- /statics/js/dist/selectSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/selectSource.js -------------------------------------------------------------------------------- /statics/js/dist/settlementAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/settlementAccount.js -------------------------------------------------------------------------------- /statics/js/dist/settlementAccountBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/settlementAccountBatch.js -------------------------------------------------------------------------------- /statics/js/dist/settlementAccountManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/settlementAccountManager.js -------------------------------------------------------------------------------- /statics/js/dist/settlementCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/settlementCategory.js -------------------------------------------------------------------------------- /statics/js/dist/settlementCategoryManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/settlementCategoryManager.js -------------------------------------------------------------------------------- /statics/js/dist/shippingAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/shippingAddress.js -------------------------------------------------------------------------------- /statics/js/dist/shippingAddressManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/shippingAddressManage.js -------------------------------------------------------------------------------- /statics/js/dist/staffList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/staffList.js -------------------------------------------------------------------------------- /statics/js/dist/staffManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/staffManage.js -------------------------------------------------------------------------------- /statics/js/dist/storageBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/storageBatch.js -------------------------------------------------------------------------------- /statics/js/dist/storageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/storageList.js -------------------------------------------------------------------------------- /statics/js/dist/storageManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/storageManage.js -------------------------------------------------------------------------------- /statics/js/dist/supplierBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/supplierBatch.js -------------------------------------------------------------------------------- /statics/js/dist/suppliersReconciliation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/suppliersReconciliation.js -------------------------------------------------------------------------------- /statics/js/dist/suppliersReconciliationNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/suppliersReconciliationNew.js -------------------------------------------------------------------------------- /statics/js/dist/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/template.js -------------------------------------------------------------------------------- /statics/js/dist/transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/transfers.js -------------------------------------------------------------------------------- /statics/js/dist/transfersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/transfersList.js -------------------------------------------------------------------------------- /statics/js/dist/unitGroupManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/unitGroupManage.js -------------------------------------------------------------------------------- /statics/js/dist/unitList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/unitList.js -------------------------------------------------------------------------------- /statics/js/dist/unitManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/unitManage.js -------------------------------------------------------------------------------- /statics/js/dist/vendorList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/vendorList.js -------------------------------------------------------------------------------- /statics/js/dist/vendorManage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/js/dist/vendorManage.js -------------------------------------------------------------------------------- /statics/login/Css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/common.css -------------------------------------------------------------------------------- /statics/login/Css/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/common.js -------------------------------------------------------------------------------- /statics/login/Css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/global.css -------------------------------------------------------------------------------- /statics/login/Css/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/jquery-1.7.1.js -------------------------------------------------------------------------------- /statics/login/Css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/loading.gif -------------------------------------------------------------------------------- /statics/login/Css/metinfo-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/metinfo-min.js -------------------------------------------------------------------------------- /statics/login/Css/metinfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/metinfo.css -------------------------------------------------------------------------------- /statics/login/Css/minicheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Css/minicheck.js -------------------------------------------------------------------------------- /statics/login/Images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/checkbox.png -------------------------------------------------------------------------------- /statics/login/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/loading.gif -------------------------------------------------------------------------------- /statics/login/Images/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/login-logo.png -------------------------------------------------------------------------------- /statics/login/Images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/login.gif -------------------------------------------------------------------------------- /statics/login/Images/loginbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/loginbox.png -------------------------------------------------------------------------------- /statics/login/Images/loginbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/loginbtn.png -------------------------------------------------------------------------------- /statics/login/Images/loginlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/loginlogo.png -------------------------------------------------------------------------------- /statics/login/Images/复件 login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/login/Images/复件 login-logo.png -------------------------------------------------------------------------------- /statics/resources/v7/css/phone_validate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/resources/v7/css/phone_validate.css -------------------------------------------------------------------------------- /statics/resources/v7/js/checkPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/resources/v7/js/checkPassword.js -------------------------------------------------------------------------------- /statics/resources/v7/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/resources/v7/js/jquery.min.js -------------------------------------------------------------------------------- /statics/resources/v7/js/phone_validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/resources/v7/js/phone_validate.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/blue/img/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/blue/img/radio.png -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/blue/img/ui-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/blue/img/ui-th.png -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/blue/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/blue/ui.min.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/common.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/default/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/default/ui.min.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/green/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/green/ui.min.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/img/close_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/img/close_all.png -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/img/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/img/dot.gif -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/img/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/img/indicator.gif -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/img/no_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/img/no_query.png -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/css/img/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/css/img/ui-icons.png -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/js/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/js/common/common.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/js/common/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/js/common/grid.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/js/common/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/js/common/plugins.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_beta/js/common/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_beta/js/common/tabs.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/css/blue/ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/css/blue/ui.min.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/css/common.css -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/css/img/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/css/img/dot.gif -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/js/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/js/common/common.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/js/common/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/js/common/grid.js -------------------------------------------------------------------------------- /statics/saas/scm/app2_release/js/common/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/saas/scm/app2_release/js/common/tabs.js -------------------------------------------------------------------------------- /statics/service/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/service/css/global.css -------------------------------------------------------------------------------- /statics/service/css/img/contact_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/service/css/img/contact_icons.png -------------------------------------------------------------------------------- /statics/service/css/img/serviceChannel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/statics/service/css/img/serviceChannel.jpg -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyric/mystock/HEAD/system/libraries/javascript/Jquery.php --------------------------------------------------------------------------------