最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

基于Springboot+Vue開發(fā)前后端端分離農(nóng)產(chǎn)品進(jìn)銷存系統(tǒng)

2022-09-30 15:18 作者:指南針畢業(yè)設(shè)計(jì)  | 我要投稿



項(xiàng)目編號(hào):BS-XX-145

一,項(xiàng)目簡(jiǎn)介

農(nóng)產(chǎn)品進(jìn)銷存系統(tǒng)是針對(duì)商店、商場(chǎng)、超市的進(jìn)銷存業(yè)務(wù)處理的計(jì)算機(jī)化而設(shè)計(jì),為進(jìn)銷存業(yè)務(wù)的處理人員提供計(jì)算機(jī)化的服務(wù),改變以往的手工操作,提高工作效率,進(jìn)而增強(qiáng)競(jìng)爭(zhēng)力。本系統(tǒng)提供的服務(wù)主要有商品的進(jìn)貨、銷售、庫(kù)存管理以及相應(yīng)的報(bào)表、查詢功能等。系統(tǒng)使用前后端分離模式開發(fā)實(shí)現(xiàn),后臺(tái)使用springboot+mybatis開發(fā),前端使用vue+nodejs實(shí)現(xiàn),通過(guò)接口遠(yuǎn)程調(diào)用。系統(tǒng)前端主要實(shí)現(xiàn)產(chǎn)品的展銷功能,后臺(tái)主要實(shí)現(xiàn)相關(guān)的數(shù)據(jù)管理功能,具體的功能實(shí)現(xiàn)如下:


  1. 系統(tǒng)用戶管理


  2. 商品管理


  3. 客戶管理


  4. 供應(yīng)商管理


  5. 進(jìn)貨管理


  6. 銷售管理


  7. 統(tǒng)計(jì)報(bào)表


  8. 前臺(tái)輪播廣告圖管理

二,環(huán)境介紹

語(yǔ)言環(huán)境:Java:? jdk1.8

數(shù)據(jù)庫(kù):Mysql: mysql5.7

應(yīng)用服務(wù)器:Tomcat:? tomcat8.5.31

開發(fā)工具:IDEA或eclipse

后臺(tái)開發(fā)技術(shù):Springboot+mybatis

前臺(tái)開發(fā)技術(shù):nodejs+vue

三,系統(tǒng)展示

前端頁(yè)面及功能展示

編輯


產(chǎn)品購(gòu)買:

編輯


后臺(tái)用戶登陸

編輯



用戶管理

編輯



商品管理

編輯


客戶管理

編輯


供應(yīng)商管理

編輯



商品進(jìn)貨

編輯


退貨查詢

編輯


商品銷售

編輯

商品退貨查詢

編輯


統(tǒng)計(jì)報(bào)表

編輯


輪播圖管理

編輯



四,核心代碼展示

package com.example.demo.controller;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.example.demo.dto.QueryDTO;import com.example.demo.entity.Customer;import com.example.demo.entity.Good;import com.example.demo.result.DataGridViewResult;import com.example.demo.result.Result;import com.example.demo.service.CustomerService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import java.util.List;/** * Description: 客戶 * date: 2022/9/30 23:46 * @author: znz * @since JDK 1.8 */@RestControllerpublic class CustomerController { ? ?@Autowired ? ?private CustomerService customerService; ? ?/** ? ? * 分頁(yè)查詢 ? ? * @param queryDTO ? ? * @return ? ? */ ? ?@PostMapping("api/cust/list") ? ?public Result customerList(@RequestBody QueryDTO queryDTO){ ? ? ? ?return new Result(200,"",customerService.selectCustomerPage(queryDTO)); ? ?} ? ?/** ? ? * 添加 ? ? * @param customer ? ? * @return ? ? */ ? ?@PostMapping("api/cust/add") ? ?public Result addCustomer(@RequestBody Customer customer){ ? ? ? ?return new Result(200,"",customerService.addCustomer(customer)); ? ?} ? ?/** ? ? * 更新/修改 ? ? * @param customer ? ? * @return ? ? */ ? ?@PostMapping("api/cust/update") ? ?public Result updateCustomer(@RequestBody Customer customer){ ? ? ? ?System.out.println(customer); ? ? ? ?return new Result(200,"",customerService.updateCustomer(customer)); ? ?} ? ?/** ? ? * 刪除 ? ? * @param custid ? ? * @return ? ? */ ? ?@PostMapping("api/cust/delete") ? ?public Result deleteCustomer(Integer custid){ ? ? ? ?return new Result(200,"",customerService.deleteCustomer(custid)); ? ?} ? ?/** ? ? * 批量刪除 ? ? * @param custids ? ? * @return ? ? */ ? ?@PostMapping("api/cust/delete/batch") ? ?public Result batchDeleteCustomer(@RequestBody List<Integer> custids){ ? ? ? ?customerService.batchDelete(custids); ? ? ? ?return new Result(200,"",""); ? ?} ? ?/** ? ? * 加載下拉框 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping("api/cust/AllCust") ? ?public DataGridViewResult loadAllCust() { ? ? ? ?QueryWrapper<Customer> queryWrapper = new QueryWrapper<>(); ? ? ? ?List<Customer> list = customerService.list(queryWrapper); ? ? ? ?return new DataGridViewResult(list); ? ?} ? ?/** ? ? * 根據(jù)客戶id加載客戶名稱 ? ? * @param ? ? * @return ? ? */ ? ?@PostMapping("api/cust/loadCustById") ? ?public DataGridViewResult loadCustById(Integer custid) { ? ? ? ?QueryWrapper<Customer> goodsQueryWrapper = new QueryWrapper<>(); ? ? ? ?goodsQueryWrapper.eq(custid != 0, "custid", custid); ? ? ? ?Customer customer = customerService.getById(custid); ? ? ? ?return new DataGridViewResult(customer); ? ?} }


package com.example.demo.controller;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.baomidou.mybatisplus.core.metadata.IPage;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import com.example.demo.dto.QueryDTO;import com.example.demo.entity.Good;import com.example.demo.entity.Provider;import com.example.demo.mapper.GoodMapper;import com.example.demo.result.DataGridViewResult;import com.example.demo.result.Result;import com.example.demo.service.GoodService;import com.example.demo.service.ProviderService;import org.apache.commons.lang3.RandomStringUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.util.StringUtils;import org.springframework.web.bind.annotation.*;import javax.servlet.http.HttpServletRequest;import java.util.List;/** * Description: * date: 2022/9/18 23:56 * @author: znz * @since JDK 1.8 */@RestControllerpublic class GoodController { ? ?@Autowired ? ?private GoodService service; ? ?@Autowired ? ?private GoodMapper goodMapper; ? ?/** ? ? * 分頁(yè)查詢 ? ? * @param queryDTO ? ? * @return ? ? */ ? ?@PostMapping("api/good/list") ? ?public Result goodList(@RequestBody QueryDTO queryDTO){ ? ? ? ?return new Result(200,"",service.selectGoodPage(queryDTO)); ? ?} ? ?@PostMapping("api/good/listpro") ? ?public Result goodProList(String keyword){ ? ? ? ?return new Result(200,"",goodMapper.selectname(keyword)); ? ?} ? ?/** ? ? * 前臺(tái)顯示 ? ? * @return ? ? */ ? ?@PostMapping("api/good/lists") ? ?public Result goodLists(){ ? ? ? ?return new Result(200,"",service.list()); ? ?} ? ?/** ? ? * 前臺(tái)查詢商品名稱 ? ? * @return ? ? */ ? ?@PostMapping("api/good/selectlists") ? ?public Result goodSelectLists(String keyword){ ? ? ? ?return new Result(200,"",goodMapper.selectgood(keyword)); ? ?} ? ?/** ? ? * 添加 ? ? * @param good ? ? * @return ? ? */ ? ?@PostMapping("api/good/add") ? ?public Result addGood(@RequestBody Good good){ ? ? ? ?// 隨機(jī)的商品編號(hào) ? ? ? ?String bering = RandomStringUtils.randomAlphanumeric(8); ? ? ? ?good.setCommbering(bering); ? ? ? ?good.setInventory(0); ? ? ? ?return new Result(200,"",service.addGood(good)); ? ?} ? ?/** ? ? * 更新/修改 ? ? * @param good ? ? * @return ? ? */ ? ?@PostMapping("api/good/update") ? ?public Result updateGoods(@RequestBody Good good){ ? ? ? ?return new Result(200,"",service.updateGood(good)); ? ?} ? ?/** ? ? * 刪除 ? ? * @param commid ? ? * @return ? ? */ ? ?@PostMapping("api/good/delete") ? ?public Result deleteGood(Integer commid){ ? ? ? ?return new Result(200,"",service.deleteGood(commid)); ? ?} ? ?/** ? ? * 批量刪除 ? ? * @param commids ? ? * @return ? ? */ ? ?@PostMapping("api/good/delete/batch") ? ?public Result batchDeleteGood(@RequestBody List<Integer> commids){ ? ? ? ?service.batchDelete(commids); ? ? ? ?return new Result(200,"",""); ? ?} ? ?/** ? ? * 根據(jù)商品id加載商品信息 ? ? * @param ? ? * @return ? ? */ ? ?@PostMapping("api/good/loadGoodById") ? ?public DataGridViewResult loadGoodsById(Integer commid) { ? ? ? ?QueryWrapper<Good> goodsQueryWrapper = new QueryWrapper<>(); ? ? ? ?goodsQueryWrapper.eq(commid != 0, "commid", commid); ? ? ? ?Good good = service.getById(commid); ? ? ? ?System.out.println(good); ? ? ? ?return new DataGridViewResult(good); ? ?} ? ?/** ? ? * 根據(jù)供應(yīng)商id加載商品信息 ? ? * @param ? ? * @return ? ? */ ? ?@PostMapping("api/good/loadProById") ? ?public DataGridViewResult loadProById(Integer providerid) { ? ? ? ?QueryWrapper<Good> goodsQueryWrapper = new QueryWrapper<>(); ? ? ? ?goodsQueryWrapper.eq(providerid != 0, "providerid", providerid); ? ? ? ?Good good = service.getById(providerid); ? ? ? ?System.out.println(good); ? ? ? ?return new DataGridViewResult(good); ? ?} ? ?/** ? ? * 加載下拉框 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping("api/good/AllGood") ? ?public DataGridViewResult loadAllGoods() { ? ? ? ?QueryWrapper<Good> queryWrapper = new QueryWrapper<>(); ? ? ? ?List<Good> list = service.list(queryWrapper); ? ? ? ?return new DataGridViewResult(list); ? ?} }


package com.example.demo.controller;import com.example.demo.result.SysResult;import org.apache.tomcat.util.http.fileupload.FileUtils;import org.springframework.http.MediaType;import org.springframework.util.ResourceUtils;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.multipart.MultipartFile;import javax.servlet.http.HttpServletRequest;import java.io.File;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;@RestControllerpublic class ImageudController { ? ? ? ?/** ? ? ? ? * 文件上傳 ? ? ? ? * @param picture ? ? ? ? * @param request ? ? ? ? * @return ? ? ? ? */ ? ? ? ?@RequestMapping("/api/good/upload") ? ? ? ?public SysResult upload(@RequestParam("picture") MultipartFile picture, HttpServletRequest request) { ? ? ? ? ? ?// 獲取文件在服務(wù)器的儲(chǔ)存位置 ? ? ? ? ? ?// String path = request.getSession().getServletContext().getRealPath("/upload"); ? ? ? ? ? ?// 將文件存儲(chǔ)到vue的static文件方便修改整理 ? ? ? ? ? ?String path = "E:/vue/demo-vue/static/upload"; ? ? ? ? ? ?File filePath = new File(path); ? ? ? ? ? ?System.out.println("文件的保存路徑:" + path); ? ? ? ? ? ?if (!filePath.exists() && !filePath.isDirectory()) { ? ? ? ? ? ? ? ?System.out.println("目錄不存在,創(chuàng)建目錄:" + filePath); ? ? ? ? ? ? ? ?filePath.mkdir(); ? ? ? ? ? ?} ? ? ? ? ? ?//獲取原始文件名稱(包含格式) ? ? ? ? ? ?String originalFileName = picture.getOriginalFilename(); ? ? ? ? ? ?System.out.println("原始文件名稱:" + originalFileName); ? ? ? ? ? ?//獲取文件類型,以最后一個(gè)`.`為標(biāo)識(shí) ? ? ? ? ? ?String type = originalFileName.substring(originalFileName.lastIndexOf(".") + 1); ? ? ? ? ? ?System.out.println("文件類型:" + type); ? ? ? ? ? ?//獲取文件名稱(不包含格式) ? ? ? ? ? ?String name = originalFileName.substring(0, originalFileName.lastIndexOf(".")); ? ? ? ? ? ?//設(shè)置文件新名稱: 當(dāng)前時(shí)間+文件名稱(不包含格式) ? ? ? ? ? ?Date d = new Date(); ? ? ? ? ? ?SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); ? ? ? ? ? ?String date = sdf.format(d); ? ? ? ? ? ?String fileName = date + name + "." + type; ? ? ? ? ? ?System.out.println("新文件名稱:" + fileName); ? ? ? ? ? ?//在指定路徑下創(chuàng)建一個(gè)文件 ? ? ? ? ? ?File targetFile = new File(path, fileName); ? ? ? ? ? ?//將文件保存到指定位置 ? ? ? ? ? ?try { ? ? ? ? ? ? ? ?picture.transferTo(targetFile); ? ? ? ? ? ? ? ?System.out.println("上傳成功"); ? ? ? ? ? ? ? ?//將文件在指定存儲(chǔ)路徑返回 ? ? ? ? ? ? ? ?return new SysResult(true,"/upload/" + fileName); ? ? ? ? ? ?} catch (IOException e) { ? ? ? ? ? ? ? ?System.out.println("上傳失敗"); ? ? ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ? ? ?return new SysResult(false, "上傳失敗"); ? ? ? ? ? ?} ? ? ? ?} ? ?/** ? ? * 文件上傳 ? ? * @param image ? ? * @param request ? ? * @return ? ? */ ? ?@RequestMapping("/api/sildeshow/upload") ? ?public SysResult uploads(@RequestParam("image") MultipartFile image, HttpServletRequest request) { ? ? ? ?// 獲取文件在服務(wù)器的儲(chǔ)存位置 ? ? ? ?// String path = request.getSession().getServletContext().getRealPath("/upload"); ? ? ? ?// 將文件存儲(chǔ)到vue的static文件方便修改整理 ? ? ? ?String path = "E:/vue/demo-vue/static/upload"; ? ? ? ?File filePath = new File(path); ? ? ? ?System.out.println("文件的保存路徑:" + path); ? ? ? ?if (!filePath.exists() && !filePath.isDirectory()) { ? ? ? ? ? ?System.out.println("目錄不存在,創(chuàng)建目錄:" + filePath); ? ? ? ? ? ?filePath.mkdir(); ? ? ? ?} ? ? ? ?//獲取原始文件名稱(包含格式) ? ? ? ?String originalFileName = image.getOriginalFilename(); ? ? ? ?System.out.println("原始文件名稱:" + originalFileName); ? ? ? ?//獲取文件類型,以最后一個(gè)`.`為標(biāo)識(shí) ? ? ? ?String type = originalFileName.substring(originalFileName.lastIndexOf(".") + 1); ? ? ? ?System.out.println("文件類型:" + type); ? ? ? ?//獲取文件名稱(不包含格式) ? ? ? ?String name = originalFileName.substring(0, originalFileName.lastIndexOf(".")); ? ? ? ?//設(shè)置文件新名稱: 當(dāng)前時(shí)間+文件名稱(不包含格式) ? ? ? ?Date d = new Date(); ? ? ? ?SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); ? ? ? ?String date = sdf.format(d); ? ? ? ?String fileName = date + name + "." + type; ? ? ? ?System.out.println("新文件名稱:" + fileName); ? ? ? ?//在指定路徑下創(chuàng)建一個(gè)文件 ? ? ? ?File targetFile = new File(path, fileName); ? ? ? ?//將文件保存到指定位置 ? ? ? ?try { ? ? ? ? ? ?image.transferTo(targetFile); ? ? ? ? ? ?System.out.println("上傳成功"); ? ? ? ? ? ?//將文件在指定存儲(chǔ)路徑返回 ? ? ? ? ? ?return new SysResult(true,"/upload/" + fileName); ? ? ? ?} catch (IOException e) { ? ? ? ? ? ?System.out.println("上傳失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?return new SysResult(false, "上傳失敗"); ? ? ? ?} ? ?} ? ?}

package com.example.demo.controller;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.example.demo.dto.QueryDTO;import com.example.demo.entity.Good;import com.example.demo.entity.Provider;import com.example.demo.entity.User;import com.example.demo.result.DataGridViewResult;import com.example.demo.result.Result;import com.example.demo.service.ProviderService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import java.util.List;/** * @Author znz * @Date 2022/10/3 0:06 * @Version 1.0 */@RestControllerpublic class ProviderController { ? ?@Autowired ? ?private ProviderService service; ? ?/** ? ? * 分頁(yè)查詢 ? ? * @param queryDTO ? ? * @return ? ? */ ? ?@PostMapping("api/provider/list") ? ?public Result providerList(@RequestBody QueryDTO queryDTO){ ? ? ? ?return new Result(200,"",service.selectProviderPage(queryDTO)); ? ?} ? ?/** ? ? * 添加 ? ? * @param provider ? ? * @return ? ? */ ? ?@PostMapping("api/provider/add") ? ?public Result addProvider(@RequestBody Provider provider){ ? ? ? ?return new Result(200,"",service.addProvider(provider)); ? ?} ? ?/** ? ? * 更新/修改 ? ? * @param provider ? ? * @return ? ? */ ? ?@PostMapping("api/provider/update") ? ?public Result updateProvider(@RequestBody Provider provider){ ? ? ? ?return new Result(200,"",service.updateProvider(provider)); ? ?} ? ?/** ? ? * 刪除 ? ? * @param providerid ? ? * @return ? ? */ ? ?@PostMapping("api/provider/delete") ? ?public Result deleteProvider(Integer providerid){ ? ? ? ?return new Result(200,"",service.deleteProvider(providerid)); ? ?} ? ?/** ? ? * 批量刪除 ? ? * @param providerids ? ? * @return ? ? */ ? ?@PostMapping("api/provider/delete/batch") ? ?public Result batchDeleteProvider(@RequestBody List<Integer> providerids){ ? ? ? ?service.batchDelete(providerids); ? ? ? ?return new Result(200,"",""); ? ?} ? ?/** ? ? * 根據(jù)供應(yīng)商id加載供應(yīng)商信息 ? ? * @param ? ? * @return ? ? */ ? ?@PostMapping("api/provider/loadProviderById") ? ?public DataGridViewResult loadProviderById(Integer providerid) { ? ? ? ?QueryWrapper<Provider> goodsQueryWrapper = new QueryWrapper<>(); ? ? ? ?goodsQueryWrapper.eq(providerid != 0, "providerid", providerid); ? ? ? ?Provider provider = service.getById(providerid); ? ? ? ?System.out.println(provider); ? ? ? ?return new DataGridViewResult(provider); ? ?} ? ?/** ? ? * 根據(jù)供應(yīng)商id加載供應(yīng)商信息 ? ? * @param ? ? * @return ? ? */ ? ?@PostMapping("api/provider/loadProviderByIds") ? ?public DataGridViewResult loadProviderByIds(Integer providerid) { ? ? ? ?QueryWrapper<Provider> goodsQueryWrapper = new QueryWrapper<>(); ? ? ? ?goodsQueryWrapper.eq(providerid != 0, "providerid", providerid); ? ? ? ?Provider provider = service.getById(providerid); ? ? ? ?System.out.println(provider); ? ? ? ?return new DataGridViewResult(provider); ? ?} ? ?/** ? ? * 加載下拉框 ? ? * ? ? * @return ? ? */ ? ?@RequestMapping("api/provider/AllProvider") ? ?public DataGridViewResult loadAllProvider() { ? ? ? ?QueryWrapper<Provider> queryWrapper = new QueryWrapper<>(); ? ? ? ?List<Provider> list = service.list(queryWrapper); ? ? ? ?return new DataGridViewResult(list); ? ?} }




五,項(xiàng)目總結(jié)

本項(xiàng)目功能齊全,基于前后端開發(fā)模式,前端和后臺(tái)分別獨(dú)立運(yùn)行,并且提供了進(jìn)銷存商品展銷的前端頁(yè)面來(lái)供瀏覽,比較適合做畢業(yè)設(shè)計(jì)使用。


基于Springboot+Vue開發(fā)前后端端分離農(nóng)產(chǎn)品進(jìn)銷存系統(tǒng)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
泗洪县| 铜陵市| 蕲春县| 塘沽区| 天门市| 亳州市| 改则县| 新安县| 仪陇县| 广宁县| 孟津县| 吉安市| 新龙县| 贞丰县| 屯昌县| 尉犁县| 万年县| 泗阳县| 娱乐| 连平县| 孙吴县| 南郑县| 济宁市| 招远市| 突泉县| 封开县| 蓝山县| 清原| 辽阳市| 吉木乃县| 屏山县| 罗平县| 聂拉木县| 富顺县| 合山市| 鄂托克前旗| 贡觉县| 农安县| 苏尼特左旗| 新源县| 介休市|