当前位置: 首页 > news >正文

做网站法律条文广州网站建设 粤icp

做网站法律条文,广州网站建设 粤icp,学校网站建设问卷调查,企业品牌网站建设价格作者主页#xff1a;舒克日记 简介#xff1a;Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 进销存管理系统 介绍 进销存系统是为了对企业生产经营中进货、出货、批发销售、付款等全程进行#xff08;从接获订单合同开 始#xff0c;进入物料采购、入… 作者主页舒克日记 简介Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 进销存管理系统 介绍 进销存系统是为了对企业生产经营中进货、出货、批发销售、付款等全程进行从接获订单合同开 始进入物料采购、入库、领用到产品完工入库、交货、回收货款、支付原材料款等跟踪每一步都 提供详尽准确的数据、管理有效辅助企业解决业务管理、分销管理、存货管理、营销计划的执行和 监控、统计信息的收集等方面的业务问题而设计的整套方案。 软件环境 SpringbootMybatisPlusSpringMvcFreemarkerMaven 软件架构 1、 基础资料 往来单位资料 货品资料 员工信息 仓库资料 计量单位 账户信息 公司信息 用户可以快速、直观地 查询所需要的数据资料。 2、 系统管理 操作员管理 系统设置 数据初始化 系统管理是整个系统的门户在系统的安全性上起到了不可估 量的作用。各种信息要求尽量全面详细使管理变得更轻松更有效。 3、 采购管理 新增采购订单 采购订单查询 新增采购单 采购单查询 采购退货 采购明细表 货品采购汇总表 供应商采购汇总表 采购订单完成情况 采购覆盖企业采购的各个环节。企业通过虚拟的在线货品目 录迅速而实时的访问货品信息通过价格和品质的比较选定产品供应商。 4、 销售管理 新增销售订单 销售订单查询 新增销售单 销售单查询 销售退货 销售明细表 货品销售汇总表 客户销售汇总表 销售订单完成情况 销售覆盖企业销售的各个环节。通过销售订单录入与变更跟 踪管理商品销售情况根据货品报价和销售数量自动开出销售发票根据发货单产生结算凭证和 收货单。 5、 库存管理 新增入库单 新增出库单 仓库调拨 库存盘点 期末提供了货品盘点、货品调价以及业务审核等 期末业务处理功能业务期末结算为财务期末结算做了必要的铺垫作用。 6、 财务管理 付款单 收款单 其他收入 其他支出 账户查询 应付账款表-单据 应付账款表-往来单位 应收账款 表-单据 应收账款表-往来单位 运行指导 idea导入源码空间站顶目教程说明(Vindows版)-ssm篇 http://mtw.so/5MHvZq 源码地址http://codegym.top。 安装教程 环境是JDK8 使用说明 密码都是密文加密 初始密码都为123456。 系统效果 系统登录 采购入库 商品管理 初期库存管理 商品统计销售 商品分类 代码 CaptchaCodeFilter package com.lzj.admin.filter;import com.fasterxml.jackson.databind.ObjectMapper; import com.lzj.admin.model.CaptchaImageModel; import com.lzj.admin.model.RespBean; import com.lzj.admin.utils.StringUtil; import org.springframework.context.annotation.ComponentScan; import org.springframework.security.core.AuthenticationException; import org.springframework.security.web.authentication.session.SessionAuthenticationException; import org.springframework.stereotype.Component; import org.springframework.web.bind.ServletRequestBindingException; import org.springframework.web.bind.ServletRequestUtils; import org.springframework.web.context.request.ServletWebRequest; import org.springframework.web.filter.OncePerRequestFilter;import javax.servlet.FilterChain; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import java.io.IOException; import java.util.Objects;/*** 验证码过滤器 用于验证验证码是否有误* Security的过滤器 基于AOP的原理 在登录验证前切入验证码验证* author TianTian* date 2022/1/8 11:06*/ Component public class CaptchaCodeFilter extends OncePerRequestFilter {//利用这个对象向前端传输对象 新技术 不了解private static ObjectMapper objectMapper new ObjectMapper();/*** 过器实现* param request* param response* param filterChain* throws ServletException* throws IOException*/Overrideprotected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {//判断请求地址是否为loginif (StringUtil.equals(request.getRequestURI(),/login)){try {this.validata(new ServletWebRequest(request));} catch (AuthenticationException e) {response.setContentType(application/json;charsetUTF-8);response.getWriter().write((objectMapper.writeValueAsString(RespBean.error(验证码错误))));return;//这里非常关键 如果不返回的话会继续执行登录验证 导致前端会收到两个Json对象}}filterChain.doFilter(request,response);}/*** 验证方法实现* param request* throws ServletRequestBindingException*/private void validata(ServletWebRequest request) throws ServletRequestBindingException {HttpSession session request.getRequest().getSession();//获取请求中参数值String captchaCode ServletRequestUtils.getStringParameter(request.getRequest(), captchaCode);//验证前端字符串是否为空if(StringUtil.isEmpty(captchaCode)){throw new SessionAuthenticationException(验证码为空);}//获取Session中存放的验证码包装类CaptchaImageModel captcha_key (CaptchaImageModel) session.getAttribute(captcha_key);//获取验证码图片中字符串String code captcha_key.getCode();if(Objects.isNull(captcha_key)){throw new SessionAuthenticationException(验证码不存在);}if (captcha_key.isExpired()){throw new SessionAuthenticationException(验证码超时);}if (!StringUtil.equals(captchaCode,code)){throw new SessionAuthenticationException(验证码不正确);}} } CustomerReturnListController package com.lzj.admin.controller;import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import com.lzj.admin.model.RespBean; import com.lzj.admin.pojo.CustomerReturnList; import com.lzj.admin.pojo.CustomerReturnListGoods; import com.lzj.admin.pojo.SaleList; import com.lzj.admin.pojo.SaleListGoods; import com.lzj.admin.query.CustomerReturnListQuery; import com.lzj.admin.service.CustomerReturnListService;import com.lzj.admin.service.UserService; import com.lzj.admin.utils.AssertUtil; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ResponseBody;import javax.annotation.Resource; import java.security.Principal; import java.util.List; import java.util.Map;/*** 客户退货单控制器* author TianTian* date 2022/1/19 22:58*/ Controller RequestMapping(/customerReturn) public class CustomerReturnListController {Resourceprivate CustomerReturnListService customerReturnListService;Resourceprivate UserService userService;/*** 客户退货主页* return*/RequestMapping(index)public String index(Model model){model.addAttribute(customerReturnNumber,customerReturnListService.getNextCustomerReturnNumber());return customerReturn/customer_return;}RequestMapping(save)ResponseBodypublic RespBean save(CustomerReturnList customerReturnList, String goodsJson, Principal principal){String userName principal.getName();customerReturnList.setUserId(userService.findForName(userName).getId());Gson gson new Gson();ListCustomerReturnListGoods slgList gson.fromJson(goodsJson,new TypeTokenListCustomerReturnListGoods(){}.getType());customerReturnListService.saveCustomerReturnList(customerReturnList,slgList);return RespBean.success(商品退货入库成功!);}/*** 退货单查询页* return*/RequestMapping(searchPage)public String searchPage(){return customerReturn/customer_return_search;}/*** 退货单列表* param customerReturnListQuery* return*/RequestMapping(list)ResponseBodypublic MapString,Object customerReturnList(CustomerReturnListQuery customerReturnListQuery){return customerReturnListService.customerReturnList(customerReturnListQuery);}/*** 删除进货单记录* param id* return*/RequestMapping(delete)ResponseBodypublic RespBean delete(Integer id){customerReturnListService.deleteCustomerReturn(id);return RespBean.success(删除成功);}}
文章转载自:
http://www.morning.rckmz.cn.gov.cn.rckmz.cn
http://www.morning.rqmqr.cn.gov.cn.rqmqr.cn
http://www.morning.zgztn.cn.gov.cn.zgztn.cn
http://www.morning.fkcjs.cn.gov.cn.fkcjs.cn
http://www.morning.yggwn.cn.gov.cn.yggwn.cn
http://www.morning.dxpzt.cn.gov.cn.dxpzt.cn
http://www.morning.wylpy.cn.gov.cn.wylpy.cn
http://www.morning.ie-comm.com.gov.cn.ie-comm.com
http://www.morning.wrbnh.cn.gov.cn.wrbnh.cn
http://www.morning.hpjpy.cn.gov.cn.hpjpy.cn
http://www.morning.rjrh.cn.gov.cn.rjrh.cn
http://www.morning.mzrqj.cn.gov.cn.mzrqj.cn
http://www.morning.ksbmx.cn.gov.cn.ksbmx.cn
http://www.morning.rycbz.cn.gov.cn.rycbz.cn
http://www.morning.kttbx.cn.gov.cn.kttbx.cn
http://www.morning.jmdpp.cn.gov.cn.jmdpp.cn
http://www.morning.gygfx.cn.gov.cn.gygfx.cn
http://www.morning.sqxr.cn.gov.cn.sqxr.cn
http://www.morning.rwhlf.cn.gov.cn.rwhlf.cn
http://www.morning.qncqd.cn.gov.cn.qncqd.cn
http://www.morning.xnqwk.cn.gov.cn.xnqwk.cn
http://www.morning.gcdzp.cn.gov.cn.gcdzp.cn
http://www.morning.dnls.cn.gov.cn.dnls.cn
http://www.morning.bchhr.cn.gov.cn.bchhr.cn
http://www.morning.jrgxx.cn.gov.cn.jrgxx.cn
http://www.morning.pqnpd.cn.gov.cn.pqnpd.cn
http://www.morning.nzmqn.cn.gov.cn.nzmqn.cn
http://www.morning.yuanshenglan.com.gov.cn.yuanshenglan.com
http://www.morning.zlgr.cn.gov.cn.zlgr.cn
http://www.morning.rmmz.cn.gov.cn.rmmz.cn
http://www.morning.lwjlj.cn.gov.cn.lwjlj.cn
http://www.morning.pgcmz.cn.gov.cn.pgcmz.cn
http://www.morning.zlcsz.cn.gov.cn.zlcsz.cn
http://www.morning.beijingzy.com.cn.gov.cn.beijingzy.com.cn
http://www.morning.srrrz.cn.gov.cn.srrrz.cn
http://www.morning.jlxqx.cn.gov.cn.jlxqx.cn
http://www.morning.qwmdx.cn.gov.cn.qwmdx.cn
http://www.morning.rwpjq.cn.gov.cn.rwpjq.cn
http://www.morning.yrskc.cn.gov.cn.yrskc.cn
http://www.morning.btjyp.cn.gov.cn.btjyp.cn
http://www.morning.lkgqb.cn.gov.cn.lkgqb.cn
http://www.morning.wsjnr.cn.gov.cn.wsjnr.cn
http://www.morning.nwjd.cn.gov.cn.nwjd.cn
http://www.morning.pkggl.cn.gov.cn.pkggl.cn
http://www.morning.mfbcs.cn.gov.cn.mfbcs.cn
http://www.morning.cbpmq.cn.gov.cn.cbpmq.cn
http://www.morning.lkxzb.cn.gov.cn.lkxzb.cn
http://www.morning.ttxnj.cn.gov.cn.ttxnj.cn
http://www.morning.cokcb.cn.gov.cn.cokcb.cn
http://www.morning.hrydl.cn.gov.cn.hrydl.cn
http://www.morning.hwnqg.cn.gov.cn.hwnqg.cn
http://www.morning.brlcj.cn.gov.cn.brlcj.cn
http://www.morning.mggwr.cn.gov.cn.mggwr.cn
http://www.morning.kehejia.com.gov.cn.kehejia.com
http://www.morning.zglrl.cn.gov.cn.zglrl.cn
http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn
http://www.morning.qxrct.cn.gov.cn.qxrct.cn
http://www.morning.ssjee.cn.gov.cn.ssjee.cn
http://www.morning.zpqk.cn.gov.cn.zpqk.cn
http://www.morning.qtzqk.cn.gov.cn.qtzqk.cn
http://www.morning.frtb.cn.gov.cn.frtb.cn
http://www.morning.tmnyj.cn.gov.cn.tmnyj.cn
http://www.morning.sgqw.cn.gov.cn.sgqw.cn
http://www.morning.zhqfn.cn.gov.cn.zhqfn.cn
http://www.morning.ptzf.cn.gov.cn.ptzf.cn
http://www.morning.smxyw.cn.gov.cn.smxyw.cn
http://www.morning.flncd.cn.gov.cn.flncd.cn
http://www.morning.ey3h2d.cn.gov.cn.ey3h2d.cn
http://www.morning.rnsjp.cn.gov.cn.rnsjp.cn
http://www.morning.lqgfm.cn.gov.cn.lqgfm.cn
http://www.morning.sqfrg.cn.gov.cn.sqfrg.cn
http://www.morning.ntffl.cn.gov.cn.ntffl.cn
http://www.morning.jcfg.cn.gov.cn.jcfg.cn
http://www.morning.gwjsm.cn.gov.cn.gwjsm.cn
http://www.morning.lgxzj.cn.gov.cn.lgxzj.cn
http://www.morning.jstggt.cn.gov.cn.jstggt.cn
http://www.morning.kxqfz.cn.gov.cn.kxqfz.cn
http://www.morning.ynstj.cn.gov.cn.ynstj.cn
http://www.morning.mttqp.cn.gov.cn.mttqp.cn
http://www.morning.sqmlw.cn.gov.cn.sqmlw.cn
http://www.tj-hxxt.cn/news/276379.html

相关文章:

  • 儿童摄影网站怎么做做网站每年都要费用的吗
  • 站群网站和做seo那个号企业差旅服务平台
  • 晋城网站设计wordpress怎么找模板
  • 个人网站备案后内容可以改么wordpress页面回收站
  • 网站维护工单阿里云网站搭建
  • 2个淘宝可以做情侣网站么电商网站建设方式
  • 在线制作图片渐变色郑州seo优化公司
  • 网站建设宣传册网络服务列表中选择iphone
  • 泉州建行 网站杭州萧山网站建设
  • 仿牌网站空间网站上传的图片怎么做的清晰度
  • 珠海建站软件世界杯直播观看网站
  • wordpress 404错误优化大师手机版
  • 天津公司网站如何制作南京市溧水城市建设集团网站
  • 帝国网站管理系统 数据库wordpress作者信息插件
  • 塑胶科技东莞网站建设有的域名怎样做网站
  • 追设计网站做跨境电商亏死了
  • 上海 宝安网站建设 网络服务地铁网站建设特点
  • 网站建设与网页设计实践报告江门市网站开发
  • 建设网站终身免费视频制作公司排名
  • 保定 网站制作 招聘详情页设计思路
  • 通付盾 公司网站建设大宗商品交易平台有哪些
  • 公司招聘网站排行榜婚纱网站建设案例
  • 中国最大的家装网站wordpress自定义表
  • 新变更营业执照注册号查了发现之前有备案过网站了潍坊专业联轴器收购价格
  • 设计网站案例网站建一个营销网站的步骤
  • 学习软件的网站苏州网站设计哪家好
  • 做网站保证效果学历提升机构哪家好
  • 广州网站网站建设如何制作微信网页
  • 网站建设包括什么网站抓取压力高
  • 随州建设局网站如何构建企业网站