基于Springboot+Vue開發(fā)前后端端分離農(nóng)產(chǎn)品進(jìn)銷存系統(tǒng)
項(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)如下:
系統(tǒng)用戶管理
商品管理
客戶管理
供應(yīng)商管理
進(jìn)貨管理
銷售管理
統(tǒng)計(jì)報(bào)表
前臺(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
*/public class CustomerController { ? ?
? ?private CustomerService customerService; ? ?/**
? ? * 分頁(yè)查詢
? ? * @param queryDTO
? ? * @return
? ? */
? ?
? ?public Result customerList({ ? ? ? ? QueryDTO queryDTO)return new Result(200,"",customerService.selectCustomerPage(queryDTO));
? ?} ? ?/**
? ? * 添加
? ? * @param customer
? ? * @return
? ? */
? ?
? ?public Result addCustomer({ ? ? ? ? Customer customer)return new Result(200,"",customerService.addCustomer(customer));
? ?} ? ?/**
? ? * 更新/修改
? ? * @param customer
? ? * @return
? ? */
? ?
? ?public Result updateCustomer({
? ? ? ?System.out.println(customer); ? ? ? ? Customer customer)return new Result(200,"",customerService.updateCustomer(customer));
? ?} ? ?/**
? ? * 刪除
? ? * @param custid
? ? * @return
? ? */
? ?
? ?public Result deleteCustomer(Integer custid){ ? ? ? ?return new Result(200,"",customerService.deleteCustomer(custid));
? ?} ? ?/**
? ? * 批量刪除
? ? * @param custids
? ? * @return
? ? */
? ?
? ?public Result batchDeleteCustomer({
? ? ? ?customerService.batchDelete(custids); ? ? ? ? List<Integer> custids)return new Result(200,"","");
? ?} ? ?/**
? ? * 加載下拉框
? ? *
? ? * @return
? ? */
? ?
? ?public DataGridViewResult loadAllCust() {
? ? ? ?QueryWrapper<Customer> queryWrapper = new QueryWrapper<>();
? ? ? ?List<Customer> list = customerService.list(queryWrapper); ? ? ? ?return new DataGridViewResult(list);
? ?} ? ?/**
? ? * 根據(jù)客戶id加載客戶名稱
? ? * @param
? ? * @return
? ? */
? ?
? ?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
*/public class GoodController { ? ?
? ?private GoodService service; ? ?
? ?private GoodMapper goodMapper; ? ?/**
? ? * 分頁(yè)查詢
? ? * @param queryDTO
? ? * @return
? ? */
? ?
? ?public Result goodList({ ? ? ? ? QueryDTO queryDTO)return new Result(200,"",service.selectGoodPage(queryDTO));
? ?} ? ?
? ?public Result goodProList(String keyword){ ? ? ? ?return new Result(200,"",goodMapper.selectname(keyword));
? ?} ? ?/**
? ? * 前臺(tái)顯示
? ? * @return
? ? */
? ?
? ?public Result goodLists(){ ? ? ? ?return new Result(200,"",service.list());
? ?} ? ?/**
? ? * 前臺(tái)查詢商品名稱
? ? * @return
? ? */
? ?
? ?public Result goodSelectLists(String keyword){ ? ? ? ?return new Result(200,"",goodMapper.selectgood(keyword));
? ?} ? ?/**
? ? * 添加
? ? * @param good
? ? * @return
? ? */
? ?
? ?public Result addGood({ ? ? ? ? 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
? ? */
? ?
? ?public Result updateGoods({ ? ? ? ? Good good)return new Result(200,"",service.updateGood(good));
? ?} ? ?/**
? ? * 刪除
? ? * @param commid
? ? * @return
? ? */
? ?
? ?public Result deleteGood(Integer commid){ ? ? ? ?return new Result(200,"",service.deleteGood(commid));
? ?} ? ?/**
? ? * 批量刪除
? ? * @param commids
? ? * @return
? ? */
? ?
? ?public Result batchDeleteGood({
? ? ? ?service.batchDelete(commids); ? ? ? ? List<Integer> commids)return new Result(200,"","");
? ?} ? ?/**
? ? * 根據(jù)商品id加載商品信息
? ? * @param
? ? * @return
? ? */
? ?
? ?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
? ? */
? ?
? ?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
? ? */
? ?
? ?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;public class ImageudController { ? ? ? ?/**
? ? ? ? * 文件上傳
? ? ? ? * @param picture
? ? ? ? * @param request
? ? ? ? * @return
? ? ? ? */
? ? ? ?
? ? ? ?public SysResult upload( { ? ? ? ? ? ? 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
? ? */
? ?
? ?public SysResult uploads( { ? ? ? ? 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
*/public class ProviderController { ? ?
? ?private ProviderService service; ? ?/**
? ? * 分頁(yè)查詢
? ? * @param queryDTO
? ? * @return
? ? */
? ?
? ?public Result providerList({ ? ? ? ? QueryDTO queryDTO)return new Result(200,"",service.selectProviderPage(queryDTO));
? ?} ? ?/**
? ? * 添加
? ? * @param provider
? ? * @return
? ? */
? ?
? ?public Result addProvider({ ? ? ? ? Provider provider)return new Result(200,"",service.addProvider(provider));
? ?} ? ?/**
? ? * 更新/修改
? ? * @param provider
? ? * @return
? ? */
? ?
? ?public Result updateProvider({ ? ? ? ? Provider provider)return new Result(200,"",service.updateProvider(provider));
? ?} ? ?/**
? ? * 刪除
? ? * @param providerid
? ? * @return
? ? */
? ?
? ?public Result deleteProvider(Integer providerid){ ? ? ? ?return new Result(200,"",service.deleteProvider(providerid));
? ?} ? ?/**
? ? * 批量刪除
? ? * @param providerids
? ? * @return
? ? */
? ?
? ?public Result batchDeleteProvider({
? ? ? ?service.batchDelete(providerids); ? ? ? ? List<Integer> providerids)return new Result(200,"","");
? ?} ? ?/**
? ? * 根據(jù)供應(yīng)商id加載供應(yīng)商信息
? ? * @param
? ? * @return
? ? */
? ?
? ?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
? ? */
? ?
? ?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
? ? */
? ?
? ?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ì)使用。