【实例简介】

超市进销存管理系统PHP源码。

可直接运行。做毕业设计、课程设计或者想研究下技术的可以下载学习。需要更多资源的可以关注我。

【实例截图】

【核心代码】

ddde235d-7c04-45ad-a332-c156539b8449

└── supermarket-master

├── Home

│   ├── Common

│   │   └── common.php

│   ├── Conf

│   │   ├── config.php

│   │   ├── fields.php

│   │   ├── role.php

│   │   └── tags.php

│   ├── Lib

│   │   ├── Action

│   │   │   ├── BuyAction.class.php

│   │   │   ├── BuyRecordAction.class.php

│   │   │   ├── CategoryAction.class.php

│   │   │   ├── CheckAction.class.php

│   │   │   ├── GoodsAction.class.php

│   │   │   ├── IndexAction.class.php

│   │   │   ├── SellAction.class.php

│   │   │   ├── SellRecordAction.class.php

│   │   │   └── UserAction.class.php

│   │   ├── Behavior

│   │   │   └── CheckBehavior.class.php

│   │   ├── Helper

│   │   │   ├── Image.class.php

│   │   │   ├── Page.class.php

│   │   │   └── UploadFile.class.php

│   │   └── Model

│   │   ├── BuyRecordModel.class.php

│   │   ├── CategoryModel.class.php

│   │   ├── GoodsModel.class.php

│   │   ├── RoleModel.class.php

│   │   ├── SellRecordModel.class.php

│   │   └── UserModel.class.php

│   └── Tpl

│   ├── Buy

│   │   └── index.html

│   ├── Check

│   │   ├── chart.html

│   │   ├── index.html

│   │   └── reclist.html

│   ├── Goods

│   │   ├── editgoods.html

│   │   ├── goodslist.html

│   │   └── index.html

│   ├── Index

│   │   ├── account.html

│   │   └── login.html

│   ├── Public

│   │   ├── footer.html

│   │   ├── header.html

│   │   └── tab-header.html

│   ├── Sell

│   │   └── index.html

│   └── User

│   ├── edituser.html

│   ├── index.html

│   └── userlist.html

├── supermarket.sql

├── Test

│   ├── common.php

│   ├── conf.php

│   ├── Home

│   │   ├── BuyTest.php

│   │   ├── CategoryTest.php

│   │   ├── GoodsTest.php

│   │   ├── IndexTest.php

│   │   ├── SellTest.php

│   │   ├── suite.php

│   │   ├── temp

│   │   │   └── cookiefile

│   │   └── UserTest.php

│   ├── myTestCase.php

│   └── test_data.php

├── ThinkPHP

│   ├── Common

│   │   ├── common.php

│   │   ├── functions.php

│   │   └── runtime.php

│   ├── Conf

│   │   ├── alias.php

│   │   ├── convention.php

│   │   ├── debug.php

│   │   └── tags.php

│   ├── Extend

│   │   ├── Function

│   │   │   ├── eppCommon.php

│   │   │   └── extend.php

│   │   └── README.txt

│   ├── Lang

│   │   ├── en-us.php

│   │   └── zh-cn.php

│   ├── Lib

│   │   ├── Behavior

│   │   │   ├── CheckRouteBehavior.class.php

│   │   │   ├── ContentReplaceBehavior.class.php

│   │   │   ├── LocationTemplateBehavior.class.php

│   │   │   ├── ParseTemplateBehavior.class.php

│   │   │   ├── ReadHtmlCacheBehavior.class.php

│   │   │   ├── ShowPageTraceBehavior.class.php

│   │   │   ├── ShowRuntimeBehavior.class.php

│   │   │   ├── TokenBuildBehavior.class.php

│   │   │   └── WriteHtmlCacheBehavior.class.php

│   │   ├── Core

│   │   │   ├── Action.class.php

│   │   │   ├── App.class.php

│   │   │   ├── Behavior.class.php

│   │   │   ├── Cache.class.php

│   │   │   ├── Db.class.php

│   │   │   ├── Dispatcher.class.php

│   │   │   ├── Log.class.php

│   │   │   ├── Model.class.php

│   │   │   ├── Think.class.php

│   │   │   ├── ThinkException.class.php

│   │   │   ├── View.class.php

│   │   │   └── Widget.class.php

│   │   ├── Driver

│   │   │   ├── Cache

│   │   │   │   └── CacheFile.class.php

│   │   │   ├── Db

│   │   │   │   ├── DbMysql.class.php

│   │   │   │   └── DbMysqli.class.php

│   │   │   └── TagLib

│   │   │   └── TagLibCx.class.php

│   │   └── Template

│   │   ├── TagLib.class.php

│   │   └── ThinkTemplate.class.php

│   ├── LICENSE.txt

│   ├── logo.png

│   ├── README.txt

│   ├── ThinkPHP.php

│   └── Tpl

│   ├── default_index.tpl

│   ├── dispatch_jump.tpl

│   ├── page_trace.tpl

│   └── think_exception.tpl

└── Webroot

├── index.php

├── Public

│   ├── Css

│   │   ├── bootstrap

│   │   │   ├── css

│   │   │   │   ├── bootstrap.css

│   │   │   │   ├── bootstrap.min.css

│   │   │   │   ├── bootstrap-responsive.css

│   │   │   │   └── bootstrap-responsive.min.css

│   │   │   ├── img

│   │   │   │   ├── glyphicons-halflings.png

│   │   │   │   └── glyphicons-halflings-white.png

│   │   │   └── js

│   │   │   ├── bootstrap.js

│   │   │   └── bootstrap.min.js

│   │   ├── flat-ui

│   │   │   ├── css

│   │   │   │   ├── bootstrap.css

│   │   │   │   └── flat-ui.css

│   │   │   ├── flat-ui.css

│   │   │   ├── fonts

│   │   │   │   ├── Flat-UI-Icons-16.dev.svg

│   │   │   │   ├── Flat-UI-Icons-16.eot

│   │   │   │   ├── Flat-UI-Icons-16.svg

│   │   │   │   ├── Flat-UI-Icons-16.ttf

│   │   │   │   ├── Flat-UI-Icons-16.woff

│   │   │   │   ├── Flat-UI-Icons-24.dev.svg

│   │   │   │   ├── Flat-UI-Icons-24.eot

│   │   │   │   ├── Flat-UI-Icons-24.svg

│   │   │   │   ├── Flat-UI-Icons-24.ttf

│   │   │   │   └── Flat-UI-Icons-24.woff

│   │   │   ├── images

│   │   │   │   ├── checkbox-2x.png

│   │   │   │   ├── checkbox.png

│   │   │   │   ├── demo

│   │   │   │   │   ├── browser-2x.png

│   │   │   │   │   ├── browser-author.jpg

│   │   │   │   │   ├── browser-pic-1.jpg

│   │   │   │   │   ├── browser-pic-2.jpg

│   │   │   │   │   ├── browser-pic-3.jpg

│   │   │   │   │   ├── browser-pic-4.jpg

│   │   │   │   │   ├── browser-pic-5.jpg

│   │   │   │   │   ├── browser-pic-6.jpg

│   │   │   │   │   ├── browser.png

│   │   │   │   │   ├── html-icon.png

│   │   │   │   │   ├── logo-mask-2x.png

│   │   │   │   │   ├── logo-mask.png

│   │   │   │   │   └── video.jpg

│   │   │   │   ├── favicon.ico

│   │   │   │   ├── footer

│   │   │   │   │   └── logo.png

│   │   │   │   ├── illustrations

│   │   │   │   │   ├── bag.png

│   │   │   │   │   ├── book.png

│   │   │   │   │   ├── calendar.png

│   │   │   │   │   ├── clipboard.png

│   │   │   │   │   ├── colors.png

│   │   │   │   │   ├── compass.png

│   │   │   │   │   ├── gift.png

│   │   │   │   │   ├── infinity.png

│   │   │   │   │   ├── mail.png

│   │   │   │   │   ├── map.png

│   │   │   │   │   ├── paper.png

│   │   │   │   │   ├── retina.png

│   │   │   │   │   ├── share.png

│   │   │   │   │   └── time.png

│   │   │   │   ├── login

│   │   │   │   │   ├── icon.png

│   │   │   │   │   ├── imac-2x.png

│   │   │   │   │   └── imac.png

│   │   │   │   ├── pager

│   │   │   │   │   ├── next.png

│   │   │   │   │   └── previous.png

│   │   │   │   ├── radio-2x.png

│   │   │   │   ├── radio.png

│   │   │   │   ├── select

│   │   │   │   │   └── toggle.png

│   │   │   │   ├── tile

│   │   │   │   │   ├── ribbon-2x.png

│   │   │   │   │   └── ribbon.png

│   │   │   │   ├── todo

│   │   │   │   │   ├── done-2x.png

│   │   │   │   │   ├── done.png

│   │   │   │   │   ├── search-2x.png

│   │   │   │   │   ├── search.png

│   │   │   │   │   ├── todo-2x.png

│   │   │   │   │   └── todo.png

│   │   │   │   ├── toggle

│   │   │   │   │   ├── block-off.png

│   │   │   │   │   ├── block-on.png

│   │   │   │   │   ├── icon-off-2x.png

│   │   │   │   │   ├── icon-off.png

│   │   │   │   │   ├── icon-on-2x.png

│   │   │   │   │   └── icon-on.png

│   │   │   │   └── video

│   │   │   │   ├── fullscreen-2x.png

│   │   │   │   ├── fullscreen.png

│   │   │   │   ├── pause-2x.png

│   │   │   │   ├── pause.png

│   │   │   │   ├── play-2x.png

│   │   │   │   ├── play.png

│   │   │   │   ├── poster.jpg

│   │   │   │   ├── volume-full-2x.png

│   │   │   │   ├── volume-full.png

│   │   │   │   ├── volume-off-2x.png

│   │   │   │   └── volume-off.png

│   │   │   ├── index.html

│   │   │   ├── js

│   │   │   │   ├── application.js

│   │   │   │   ├── bootstrap-tooltip.js

│   │   │   │   ├── custom_checkbox_and_radio.js

│   │   │   │   ├── custom_radio.js

│   │   │   │   ├── html5shiv.js

│   │   │   │   ├── icon-font-ie7.js

│   │   │   │   ├── jquery-1.8.2.min.js

│   │   │   │   ├── jquery.dropkick-1.0.0.js

│   │   │   │   ├── jquery.placeholder.js

│   │   │   │   ├── jquery.tagsinput.js

│   │   │   │   ├── jquery-ui-1.10.0.custom.min.js

│   │   │   │   └── lte-ie7-24.js

│   │   │   ├── README.md

│   │   │   ├── sass

│   │   │   │   ├── _config.sass

│   │   │   │   ├── flat-ui.sass

│   │   │   │   ├── _icon-font-24.sass

│   │   │   │   ├── _icon-font.sass

│   │   │   │   ├── _mixins.sass

│   │   │   │   ├── modules

│   │   │   │   │   ├── _btn.sass

│   │   │   │   │   ├── _checkbox-and-radio.sass

│   │   │   │   │   ├── _demo.sass

│   │   │   │   │   ├── _footer.sass

│   │   │   │   │   ├── _input.sass

│   │   │   │   │   ├── _login.sass

│   │   │   │   │   ├── _navbar.sass

│   │   │   │   │   ├── _pager.sass

│   │   │   │   │   ├── _pagination.sass

│   │   │   │   │   ├── _palette.sass

│   │   │   │   │   ├── _progress.sass

│   │   │   │   │   ├── _select.sass

│   │   │   │   │   ├── _share.sass

│   │   │   │   │   ├── _tagsinput.sass

│   │   │   │   │   ├── _tile.sass

│   │   │   │   │   ├── _todo.sass

│   │   │   │   │   ├── _toggle.sass

│   │   │   │   │   ├── _tooltip.sass

│   │   │   │   │   ├── _type.sass

│   │   │   │   │   ├── _ui-slider.sass

│   │   │   │   │   └── _video.sass

│   │   │   │   └── _spaces.sass

│   │   │   └── Useful Links! (How To)

│   │   ├── less-1.3.3.min.js

│   │   └── main.css

│   ├── error.html

│   ├── images

│   │   └── login

│   │   ├── icon.png

│   │   └── imac.png

│   └── Js

│   ├── account.js

│   ├── buy.js

│   ├── check.js

│   ├── draw.js

│   ├── editgoods.js

│   ├── goods.js

│   ├── goodslist.js

│   ├── google

│   │   ├── corechart.js

│   │   ├── jsapi.js

│   │   └── tooltip.css

│   ├── jquery-1.9.1.min.js

│   ├── login.js

│   ├── public.js

│   ├── reclist.js

│   ├── sell.js

│   ├── user.js

│   └── userlist.js

└── Upload

└── Image

├── 1370441026.jpg

├── 1370441092.jpg

├── 1370441324.jpg

├── 1370441352.jpg

├── 1370441401.jpg

├── 1370441576.jpg

├── 1370441790.jpg

├── 1370442423.jpg

├── 1370442466.jpg

├── 1371019594.jpg

├── Nopic.jpg

├── test2.jpg

└── test.jpg

65 directories, 263 files

超市购物管理系统php,超市进销存管理系统PHP源码相关推荐

  1. 计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档)

    计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档) 计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档) 本源码技术栈: 项目架构 ...

  2. 计算机毕业设计Java超市货品进销存系统前台(源码+系统+mysql数据库+lw文档)

    计算机毕业设计Java超市货品进销存系统前台(源码+系统+mysql数据库+lw文档) 计算机毕业设计Java超市货品进销存系统前台(源码+系统+mysql数据库+lw文档) 本源码技术栈: 项目架构 ...

  3. 计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档

    计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档 计算机毕业设计Java超市货品进销存系统后台(源码+系统+mysql数据库+lw文档) 本源码技术栈: 项目架构: ...

  4. 基于Java毕业设计超市货品进销存系统前台源码+系统+mysql+lw文档+部署软件

    基于Java毕业设计超市货品进销存系统前台源码+系统+mysql+lw文档+部署软件 基于Java毕业设计超市货品进销存系统前台源码+系统+mysql+lw文档+部署软件 本源码技术栈: 项目架构:B ...

  5. 基于Java毕业设计超市货品进销存系统后台源码+系统+mysql+lw文档+部署软件

    基于Java毕业设计超市货品进销存系统后台源码+系统+mysql+lw文档+部署软件 基于Java毕业设计超市货品进销存系统后台源码+系统+mysql+lw文档+部署软件 本源码技术栈: 项目架构:B ...

  6. JSP JAVA javaweb仓库库存管理系统(仓库进销存管理系统库存管理系统仓库管理系统)

    JSP 仓库库存管理系统(仓库进销存管理系统库存管理系统仓库管理系统) 常见的Javaweb题材有 理财系统,就业管理系统,汽车租赁,简易网盘,疫情数据查看,在线招标房,屋租赁,教务管理,医院管理,餐 ...

  7. javaweb JSP JAVA 仓库库存管理系统(仓库进销存管理系统jsp服装库存管理系统仓库管理系统)

    javaweb JSP JAVA 仓库库存管理系统(仓库进销存管理系统jsp服装库存管理系统仓库管理系统) 常见的Javaweb题材有 理财系统,就业管理系统,汽车租赁,简易网盘,疫情数据查看,在线招 ...

  8. JSP JAVA javaweb企业仓库库存管理系统(仓库进销存管理系统ssm库存管理系统仓库管理系统)

    JSP 企业仓库库存管理系统(仓库进销存管理系统ssm库存管理系统仓库管理系统)

  9. 计算机毕业设计Java某日杂商店进销存管理系统设计(源码+系统+mysql数据库+lw文档)

    计算机毕业设计Java某日杂商店进销存管理系统设计(源码+系统+mysql数据库+lw文档) 计算机毕业设计Java某日杂商店进销存管理系统设计(源码+系统+mysql数据库+lw文档) 本源码技术栈 ...

  10. JAVA毕业设计服装批发进销存系统计算机源码+lw文档+系统+调试部署+数据库

    JAVA毕业设计服装批发进销存系统计算机源码+lw文档+系统+调试部署+数据库 JAVA毕业设计服装批发进销存系统计算机源码+lw文档+系统+调试部署+数据库 本源码技术栈: 项目架构:B/S架构 开 ...

最新文章

  1. php滑动换视频,php工具类之【视频变换类】
  2. Python Django中,页面改变但链接地址没有跳转,解决方法
  3. ARC_xp_20160530
  4. 树莓派使用STEP5:安装samba文件共享服务器
  5. python 系统学习笔记(十二)---os os.path os.walk
  6. linux上mongodb的安装与卸载
  7. VS2013配置Qt5.8.0环境
  8. 数据结构----排序
  9. iOS开发拓展篇—蓝牙之mutipeerConnectivity的使用
  10. spring 集成 spring cloud config 的相关知识
  11. 这个工具,可视化分析10W数据后,找到了数据岗位月薪20K的秘诀
  12. TensorFlow 2.0要来了,tf.contrib要砍了 | 有什么意见你说啊
  13. app商城源码_海量的SpringBoot和SSM项目【附带源码+视频教程】快速成为全栈
  14. 岁月温柔-15 妈妈三天不吃饭再次住院
  15. android自带浏览器调试,Android 手机浏览器调试使用Chrome进行调试实例详解
  16. 1.3 PyCharm下载
  17. Oracle EBS DBA培训提纲
  18. 基于matlab山脊线,山脊线山谷线提取实验报告.doc
  19. Redis过期键的删除策略
  20. html5 canvas绘制图形,html5 Canvas绘制图形入门详解

热门文章

  1. 嵌入式系统开发笔记88:认识51微控制器系统架构
  2. 域计算机软件安装统计,如何通过SCCM查找客户端计算机已安装的软件清单
  3. Vue.js项目实战——Day(1)
  4. 免费:轻松实现在微信中直接下载APK
  5. 苹果固件验证关闭服务器时间,苹果ios系统终于可以降级了,或关闭固件验证
  6. 2015阿里巴巴校招在线笔试题
  7. 关于依赖注入和依赖属性
  8. 《领导变革》读书笔记
  9. post测试+php文件,PHPT – 无法运行使用–POST_RAW–的示例测试
  10. 光辉岁月--beyond 献给麦德拉