当前位置:   article > 正文

ssm农产品仓库管理系统系统源码和论文

ssm农产品仓库管理系统系统源码和论文

ssm农产品仓库管理系统系统源码和论文064

 开发工具:idea 
 数据库mysql5.7+
 数据库链接工具:navcat,小海豚等
  技术:ssm

  1. 选题的背景

中国是一个农产品生产的大国,可利用的农产品资源相对贫乏,传统的单纯依靠大量物质资源消耗和增加投入的发展模式已行不通了,而农产品信息技术在农产品上的普遍应用对农产品的发展将起到越来越重要的作用。我国蕴藏着丰富的科技信息资源,尤其是农产品信息资源,但是由于信息加工层次和水平比较低信息的附加值还没有得到充分的挖掘和利用,造成了农产品科技信息资源的严重浪费。因此如何有效地利用农产品信息资源是摆在我们面前的重要课题。

  1. 选题的意义

农产品仓库管理系统是通过入库业务,出库业务,入库搜索,出库搜索,物品管理等功能综合运用的管理系统。对库存业务的物流和成本管理全过程进行有效控制和跟踪,实现完善的仓库信息管理合理地利用农产品资源,使农产品的存储加工更加合理化、人性化,所以我们开发了该系统。开发此系统的目的对农产品信息进行规范化,连接数据库并在数据库中操纵数据,对数据进行添加、删除、修改等。随着信息技术的迅猛发展,越来越多的农产品管理企业开始摒弃传统的管理模式,采用高效的、可靠的计算机来进行企业内的各种业务管理以使企业内部管理更加清晰、 明了、高效、可靠。

  1. 研究现状

在研究过程中,目前国内及国外对于仓库的管理系统软件不在少数,但是具备智能化的就寥寥无几,有些仓库管理软件功能强大,但不实用;有些实用,但是软件界面不够友好;有些界面华丽,但是性能不够稳定。所以,我觉得我需要制作出一款,实用,界面友好,性能稳定,简单易于操作的农产品仓库管理系统。操作本系统的客户并不是专业的计算机从业人员,他们对于软件的初步认识就是,外观,所以,在jsp 技术上可以选择比较动态,美观大方的extjs 系统架构,该架构对于用户的提示友好,性能强大,动态性好,充分满足前台页面的实际需求。而一款软件有一件漂亮的外衣还是不够的,他还需要强大的内心,这个内心就是Java和数据库,他的骨架就是java,他的血液就是mysql。这样组成的软件才能成为一款优秀的农产品仓库管理系统。

  1. 研究内容

(1)了解当下市场中农产品存储的现状

分别通过网上问卷查找资料的形式或者实地考察访问的方式去了解现在的情况。

(2)网站设计模块的构想

针对所调查的情况,进行页面设计过程各个模块所需技术支持的研究。批量入库、批量出库、入库搜索、出库搜索、物品管理、用户注册、用户登录、用户留言、用户入库、用户出库等等。

(3)网站的实现

运用Java和MySQL等技术搭建完成本次的农产品仓库管理系统。农产品仓库管理系统是一个专门用来管理包括粮食、水果、蔬菜、 肉类、蛋类五种农产品的系统。该软件为“农产品仓库管理系统”此软件的开发是针对某些企业及公司仓库货物管理的繁琐操作。此系统按照不同的角色,系统可以分为两大部分用户和管理员。用户,该操作要求用户名和对应的密码才能进入系统执行相应的操作。管理员,该操作要求管理员名和对应的密码才能进入系统执行相应权限的操作。

  1. package com.controller;
  2. import java.text.SimpleDateFormat;
  3. import com.alibaba.fastjson.JSONObject;
  4. import java.util.*;
  5. import com.entity.*;
  6. import com.service.*;
  7. import org.springframework.beans.BeanUtils;
  8. import javax.servlet.http.HttpServletRequest;
  9. import org.springframework.web.context.ContextLoader;
  10. import javax.servlet.ServletContext;
  11. import com.utils.StringUtil;
  12. import java.lang.reflect.InvocationTargetException;
  13. import org.apache.commons.lang3.StringUtils;
  14. import com.annotation.IgnoreAuth;
  15. import org.slf4j.Logger;
  16. import org.slf4j.LoggerFactory;
  17. import org.springframework.beans.factory.annotation.Autowired;
  18. import org.springframework.stereotype.Controller;
  19. import org.springframework.web.bind.annotation.*;
  20. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  21. import com.baomidou.mybatisplus.mapper.Wrapper;
  22. import com.entity.view.EntrustInOutOrderView;
  23. import com.utils.PageUtils;
  24. import com.utils.R;
  25. /**
  26. * 委托出入库订单
  27. * 后端接口
  28. * @author
  29. * @email
  30. * @date 2021-03-10
  31. */
  32. @RestController
  33. @Controller
  34. @RequestMapping("/entrustInOutOrder")
  35. public class EntrustInOutOrderController {
  36. private static final Logger logger = LoggerFactory.getLogger(EntrustInOutOrderController.class);
  37. @Autowired
  38. private EntrustInOutOrderService entrustInOutOrderService;
  39. @Autowired
  40. private TokenService tokenService;
  41. @Autowired
  42. private DictionaryService dictionaryService;
  43. //级联表service
  44. @Autowired
  45. private YonghuService yonghuService;
  46. @Autowired
  47. private EntrustInOutOrderListService entrustInOutOrderListService;
  48. @Autowired
  49. private GoodsService goodsService;
  50. /**
  51. * 后端列表
  52. */
  53. @RequestMapping("/page")
  54. public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
  55. logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
  56. String role = String.valueOf(request.getSession().getAttribute("role"));
  57. if(StringUtil.isNotEmpty(role) && "用户".equals(role)){
  58. params.put("yonghuId",request.getSession().getAttribute("userId"));
  59. }
  60. PageUtils page = entrustInOutOrderService.queryPage(params);
  61. //字典表数据转换
  62. List<EntrustInOutOrderView> list =(List<EntrustInOutOrderView>)page.getList();
  63. for(EntrustInOutOrderView c:list){
  64. //修改对应字典表字段
  65. dictionaryService.dictionaryConvert(c);
  66. }
  67. return R.ok().put("data", page);
  68. }
  69. /**
  70. * 后端详情
  71. */
  72. @RequestMapping("/info/{id}")
  73. public R info(@PathVariable("id") Long id){
  74. logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
  75. EntrustInOutOrderEntity entrustInOutOrder = entrustInOutOrderService.selectById(id);
  76. if(entrustInOutOrder !=null){
  77. //entity转view
  78. EntrustInOutOrderView view = new EntrustInOutOrderView();
  79. BeanUtils.copyProperties( entrustInOutOrder , view );//把实体数据重构到view中
  80. //级联表
  81. YonghuEntity yonghu = yonghuService.selectById(entrustInOutOrder.getYonghuId());
  82. if(yonghu != null){
  83. BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
  84. view.setYonghuId(yonghu.getId());
  85. }
  86. //修改对应字典表字段
  87. dictionaryService.dictionaryConvert(view);
  88. return R.ok().put("data", view);
  89. }else {
  90. return R.error(511,"查不到数据");
  91. }
  92. }
  93. /**
  94. * 后端保存
  95. */
  96. @RequestMapping("/save")
  97. public R save(@RequestBody EntrustInOutOrderEntity entrustInOutOrder, HttpServletRequest request){
  98. logger.debug("save方法:,,Controller:{},,entrustInOutOrder:{}",this.getClass().getName(),entrustInOutOrder.toString());
  99. Wrapper<EntrustInOutOrderEntity> queryWrapper = new EntityWrapper<EntrustInOutOrderEntity>()
  100. .eq("yonghu_id", entrustInOutOrder.getYonghuId())
  101. .eq("order_name", entrustInOutOrder.getOrderName())
  102. .eq("order_types", entrustInOutOrder.getOrderTypes())
  103. .eq("caozuo_name", entrustInOutOrder.getCaozuoName())
  104. .eq("caozuo_table", entrustInOutOrder.getCaozuoTable())
  105. .eq("caozuo_types", entrustInOutOrder.getCaozuoTypes())
  106. ;
  107. logger.info("sql语句:"+queryWrapper.getSqlSegment());
  108. EntrustInOutOrderEntity entrustInOutOrderEntity = entrustInOutOrderService.selectOne(queryWrapper);
  109. if(entrustInOutOrderEntity==null){
  110. entrustInOutOrder.setInsertTime(new Date());
  111. entrustInOutOrder.setCreateTime(new Date());
  112. // String role = String.valueOf(request.getSession().getAttribute("role"));
  113. // if("".equals(role)){
  114. // entrustInOutOrder.set
  115. // }
  116. entrustInOutOrderService.insert(entrustInOutOrder);
  117. return R.ok();
  118. }else {
  119. return R.error(511,"表中有相同数据");
  120. }
  121. }
  122. /**
  123. * 修改
  124. */
  125. @RequestMapping("/update")
  126. public R update(@RequestBody EntrustInOutOrderEntity entrustInOutOrder, HttpServletRequest request){
  127. logger.debug("update方法:,,Controller:{},,entrustInOutOrder:{}",this.getClass().getName(),entrustInOutOrder.toString());
  128. //根据字段查询是否有相同数据
  129. Wrapper<EntrustInOutOrderEntity> queryWrapper = new EntityWrapper<EntrustInOutOrderEntity>()
  130. .notIn("id",entrustInOutOrder.getId())
  131. .eq("yonghu_id", entrustInOutOrder.getYonghuId())
  132. .eq("order_name", entrustInOutOrder.getOrderName())
  133. .eq("order_types", entrustInOutOrder.getOrderTypes())
  134. .eq("caozuo_name", entrustInOutOrder.getCaozuoName())
  135. .eq("caozuo_table", entrustInOutOrder.getCaozuoTable())
  136. .eq("caozuo_types", entrustInOutOrder.getCaozuoTypes())
  137. ;
  138. logger.info("sql语句:"+queryWrapper.getSqlSegment());
  139. EntrustInOutOrderEntity entrustInOutOrderEntity = entrustInOutOrderService.selectOne(queryWrapper);
  140. entrustInOutOrder.setUpdateTime(new Date());
  141. if(entrustInOutOrderEntity==null){
  142. // String role = String.valueOf(request.getSession().getAttribute("role"));
  143. // if("".equals(role)){
  144. // entrustInOutOrder.set
  145. // }
  146. entrustInOutOrderService.updateById(entrustInOutOrder);//根据id更新
  147. return R.ok();
  148. }else {
  149. return R.error(511,"表中有相同数据");
  150. }
  151. }
  152. /**
  153. * 新增 委托出库入库
  154. */
  155. @RequestMapping("/inOutOrder")
  156. public R inOutOrder(@RequestBody Map<String, Object> params,HttpServletRequest request){
  157. logger.debug("inOutOrder方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
  158. String role = String.valueOf(request.getSession().getAttribute("role"));
  159. if("用户".equals(role)){
  160. Map<String, Integer> map = (Map<String, Integer>) params.get("map");
  161. String orderName = String.valueOf(params.get("orderName"));
  162. // InOutOrderEntity one = inOutOrderService.selectOne(new EntityWrapper<InOutOrderEntity>().eq("order_name", orderName));
  163. EntrustInOutOrderEntity one = entrustInOutOrderService.selectOne(new EntityWrapper<EntrustInOutOrderEntity>().eq("order_name", orderName));
  164. if(one != null){
  165. return R.error(orderName+"的委托订单名已经被使用");
  166. }
  167. Set<String> ids = map.keySet();
  168. Date date = new Date();
  169. //新增订单
  170. EntrustInOutOrderEntity entrustInOutOrderEntity = new EntrustInOutOrderEntity();
  171. entrustInOutOrderEntity.setYonghuId(Integer.parseInt(String.valueOf(request.getSession().getAttribute("userId"))));
  172. entrustInOutOrderEntity.setOrderName(orderName);
  173. entrustInOutOrderEntity.setOrderTypes(Integer.parseInt(String.valueOf(params.get("orderType"))));
  174. entrustInOutOrderEntity.setCaozuoTypes(2);//操作类型为未操作
  175. entrustInOutOrderEntity.setInsertTime(new Date());
  176. entrustInOutOrderEntity.setCreateTime(date);
  177. entrustInOutOrderService.insert(entrustInOutOrderEntity);
  178. if(entrustInOutOrderEntity.getId()!=null){
  179. //新增订单详情
  180. List<EntrustInOutOrderListEntity> inOutOrderListEntityList = new ArrayList<>();
  181. for(String i:ids){
  182. EntrustInOutOrderListEntity entrustInOutOrderListEntity = new EntrustInOutOrderListEntity();
  183. entrustInOutOrderListEntity.setEntrustInOutOrderId(entrustInOutOrderEntity.getId());
  184. entrustInOutOrderListEntity.setGoodsId(Integer.valueOf(i));
  185. entrustInOutOrderListEntity.setOrderNumber(Integer.valueOf(map.get(i)));
  186. entrustInOutOrderListEntity.setEntrustTypes(1);//默认状态为不同意
  187. entrustInOutOrderListEntity.setCreateTime(date);
  188. inOutOrderListEntityList.add(entrustInOutOrderListEntity);
  189. }
  190. if(inOutOrderListEntityList != null && inOutOrderListEntityList.size()>0){
  191. entrustInOutOrderListService.insertBatch(inOutOrderListEntityList);
  192. return R.ok();
  193. }
  194. }else{
  195. return R.error("新增订单失败");
  196. }
  197. return R.ok();
  198. }else{
  199. return R.error("您没有委托权限");
  200. }
  201. }
  202. /**
  203. * 对委托的出入库订单进行审核
  204. */
  205. @RequestMapping("/examineInOutOrder")
  206. public R examineInOutOrder(@RequestBody Map<String, Object> params,HttpServletRequest request){
  207. logger.debug("examineInOutOrder方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
  208. String role = String.valueOf(request.getSession().getAttribute("role"));
  209. if("管理员".equals(role)){
  210. Date date = new Date();
  211. List<Integer> ids = (List<Integer>) params.get("list");//list为订单详情的id列表
  212. String id = String.valueOf(params.get("id"));//订单id的
  213. if(ids == null || ids.size() == 0){
  214. //如果全部都是不同意,会进入这里,直接修改订单状态为已操作就好了
  215. EntrustInOutOrderEntity order = new EntrustInOutOrderEntity();
  216. order.setId(Integer.valueOf(id));
  217. order.setCaozuoTypes(1);//设置操作状态为已操作
  218. order.setCaozuoName(String.valueOf(request.getSession().getAttribute("username")));//设置操作人名字
  219. order.setCaozuoTable(String.valueOf(request.getSession().getAttribute("tableName")));//设置操作人表名
  220. order.setUpdateTime(date);
  221. entrustInOutOrderService.updateById(order);
  222. return R.ok();
  223. }
  224. //订单详情
  225. List<EntrustInOutOrderListEntity> orderList = entrustInOutOrderListService.selectBatchIds(ids);//当天订单列表详情
  226. EntrustInOutOrderEntity entrustInOutOrderEntity = entrustInOutOrderService.selectById(id);//当前订单信息
  227. Map<Integer, Integer> map = new HashMap<>();
  228. for(EntrustInOutOrderListEntity o:orderList){
  229. o.setEntrustTypes(2);//设置订单为同意
  230. map.put(o.getGoodsId(), o.getOrderNumber());
  231. }
  232. if(entrustInOutOrderEntity != null){
  233. Set<Integer> goodIds = map.keySet();
  234. List<GoodsEntity> list = goodsService.selectBatchIds(goodIds);
  235. Integer orderTypes = entrustInOutOrderEntity.getOrderTypes();
  236. if(orderTypes == null){
  237. return R.error(entrustInOutOrderEntity.getOrderName()+"的订单的委托类型有问题");
  238. }else if(orderTypes ==1 || orderTypes ==2){
  239. for(GoodsEntity g:list){
  240. if(orderTypes ==1 ){
  241. //出库
  242. int i = g.getGoodsNumber() - map.get(g.getId());
  243. if(i<0){
  244. Integer flag = g.getFlag();
  245. String a="";
  246. if(flag == 1){
  247. a="在使用状态";
  248. }else{
  249. a="已经删除";
  250. }
  251. return R.error(g.getGoodsName()+"的商品出库后数量为负,请重新处理,商品是"+a);
  252. }else{
  253. g.setGoodsNumber(i);
  254. }
  255. }else if(orderTypes ==2){
  256. //入库
  257. g.setGoodsNumber(g.getGoodsNumber()+map.get(g.getId()));
  258. }
  259. }
  260. }else{
  261. return R.error(entrustInOutOrderEntity.getOrderName()+"的订单的委托类型是"+orderTypes+"有问题");
  262. }
  263. //更新订单详情表
  264. entrustInOutOrderListService.updateBatchById(orderList);
  265. //更新订单表
  266. entrustInOutOrderEntity.setCaozuoTypes(1);//设置操作状态为已操作
  267. entrustInOutOrderEntity.setCaozuoName(String.valueOf(request.getSession().getAttribute("username")));//设置操作人名字
  268. entrustInOutOrderEntity.setCaozuoTable(String.valueOf(request.getSession().getAttribute("tableName")));//设置操作人表名
  269. entrustInOutOrderEntity.setUpdateTime(date);
  270. entrustInOutOrderService.updateById(entrustInOutOrderEntity);
  271. //修改物资的数量
  272. goodsService.updateBatchById(list);
  273. }else{
  274. return R.error("订单不存在");
  275. }
  276. return R.ok();
  277. }else{
  278. return R.error("您没有处理委托的权限");
  279. }
  280. }
  281. /**
  282. * 删除
  283. */
  284. @RequestMapping("/delete")
  285. public R delete(@RequestBody Integer[] ids){
  286. logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
  287. List<EntrustInOutOrderEntity> list = entrustInOutOrderService.selectList(new EntityWrapper<EntrustInOutOrderEntity>().in("id", ids));
  288. entrustInOutOrderService.deleteBatchIds(Arrays.asList(ids));
  289. List<Integer> entrustInOutOrderIds = new ArrayList<>();
  290. for(EntrustInOutOrderEntity order:list){
  291. entrustInOutOrderIds.add(order.getId());
  292. }
  293. if(entrustInOutOrderIds != null && entrustInOutOrderIds.size()>0){
  294. entrustInOutOrderListService.delete(new EntityWrapper<EntrustInOutOrderListEntity>().in("entrust_in_out_order_id", entrustInOutOrderIds));
  295. }
  296. return R.ok();
  297. }
  298. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/584012
推荐阅读
相关标签
  

闽ICP备14008679号