便利店
This commit is contained in:
parent
5040d2d9e1
commit
19abf7e302
@ -13,8 +13,8 @@ export function insertCvsGoods(data) {
|
||||
export function selectTree(data) {
|
||||
return request({
|
||||
url: '/business/cvsGoods/selectTree',
|
||||
method: 'post',
|
||||
data: data
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
|
||||
|
44
fuintAdmin/src/api/convenienceStore/ljgoods.js
Normal file
44
fuintAdmin/src/api/convenienceStore/ljgoods.js
Normal file
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询供应商列表
|
||||
export function listLJGoods(query) {
|
||||
return request({
|
||||
url: '/business/convenience/goods/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询供应商详细
|
||||
export function getLJGoods(id) {
|
||||
return request({
|
||||
url: '/business/convenience/goods/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增供应商
|
||||
export function addLJGoods(data) {
|
||||
return request({
|
||||
url: '/business/convenience/goods',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改供应商
|
||||
export function updateLJGoods(data) {
|
||||
return request({
|
||||
url: '/business/convenience/goods',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除供应商
|
||||
export function delLJGoods(id) {
|
||||
return request({
|
||||
url: '/business/convenience/goods/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
44
fuintAdmin/src/api/convenienceStore/supplier.js
Normal file
44
fuintAdmin/src/api/convenienceStore/supplier.js
Normal file
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询供应商列表
|
||||
export function listSupplier(query) {
|
||||
return request({
|
||||
url: '/business/convenience/supplier/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询供应商详细
|
||||
export function getSupplier(id) {
|
||||
return request({
|
||||
url: '/business/convenience/supplier/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增供应商
|
||||
export function addSupplier(data) {
|
||||
return request({
|
||||
url: '/business/convenience/supplier',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改供应商
|
||||
export function updateSupplier(data) {
|
||||
return request({
|
||||
url: '/business/convenience/supplier',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除供应商
|
||||
export function delSupplier(id) {
|
||||
return request({
|
||||
url: '/business/convenience/supplier/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
289
fuintAdmin/src/views/convenienceStore/supplier.vue
Normal file
289
fuintAdmin/src/views/convenienceStore/supplier.vue
Normal file
@ -0,0 +1,289 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card >
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="供应商" prop="name">
|
||||
<el-input
|
||||
v-model="queryParams.name"
|
||||
placeholder="请输入供应商名称"
|
||||
clearable
|
||||
style="width: 240px;"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="联系人" prop="contacts">
|
||||
<el-input
|
||||
v-model="queryParams.contacts"
|
||||
placeholder="请输入联系人"
|
||||
clearable
|
||||
style="width: 240px;"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="联系电话" prop="mobile">
|
||||
<el-input
|
||||
v-model="queryParams.mobile"
|
||||
placeholder="请输入联系电话"
|
||||
clearable
|
||||
style="width: 240px;"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
|
||||
<el-card style="margin-top: 20px">
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-plus"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['member:add']"
|
||||
>新增会员</el-button>
|
||||
<el-table ref="tables" v-loading="loading" :data="list"
|
||||
@selection-change="handleSelectionChange" :default-sort="defaultSort"
|
||||
@sort-change="handleSortChange">
|
||||
<el-table-column label="ID" prop="id" align="center" width="60"/>
|
||||
<el-table-column label="供应商名称" prop="name" align="center"/>
|
||||
<el-table-column label="联系人" prop="contacts" align="center">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.contacts ? scope.row.contacts : '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="联系电话" align="center" prop="mobile">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.mobile ? scope.row.mobile : '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="联系地址" align="center" prop="address">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.address ? scope.row.address : '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注信息" align="center" prop="remark">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.remark ? scope.row.remark : '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="创建时间" align="center" width="160" prop="createTime">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="120" fixed='right'>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
v-hasPermi="['member:add']"
|
||||
@click="handleUpdate(scope.row)"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
v-hasPermi="['member:add']"
|
||||
@click="handleDelete(scope.row)"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.page"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-card>
|
||||
|
||||
<!-- 添加或修改对话框 -->
|
||||
<el-dialog :close-on-click-modal="false" :title="title" width="600px" style="margin-top: 5%" :visible.sync="open" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="90px">
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="供应商" prop="name" style="width: 420px">
|
||||
<el-input v-model="form.name" placeholder="请输入供应商名称" maxlength="30" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="联系人" prop="contacts">
|
||||
<el-input v-model="form.contacts" placeholder="供应商联系人" maxlength="30"/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="联系电话" prop="mobile">
|
||||
<el-input v-model="form.mobile" placeholder="供应商联系电话" maxlength="30"/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="联系地址" prop="address">
|
||||
<el-input v-model="form.address" placeholder="供应商联系地址" maxlength="30" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import {addSupplier, delSupplier, getSupplier, listSupplier, updateSupplier} from "@/api/convenienceStore/supplier";
|
||||
|
||||
export default {
|
||||
// dicts: ['zhzt'],
|
||||
data(){
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 标题
|
||||
title: "",
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 表格数据
|
||||
list: [],
|
||||
// 是否显示修改对话框
|
||||
open: false,
|
||||
// 默认排序
|
||||
defaultSort: {prop: 'updateTime', order: 'descending'},
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
id: '',
|
||||
name: '',
|
||||
contacts: '',
|
||||
mobile: '',
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 表单校验
|
||||
rules: {
|
||||
name: [
|
||||
{ required: true, message: "供应商名称不能为空", trigger: "blur" },
|
||||
],
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods:{
|
||||
// 查询列表
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listSupplier(this.queryParams).then(response => {
|
||||
this.list = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 搜索按钮操作
|
||||
handleQuery() {
|
||||
this.queryParams.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
// 重置按钮操作
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.$refs.tables.sort(this.defaultSort.prop, this.defaultSort.order);
|
||||
this.handleQuery();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.resetForm("form");
|
||||
this.form= {}
|
||||
},
|
||||
// 新增按钮操作
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "新增供应商";
|
||||
},
|
||||
// 修改按钮操作
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids;
|
||||
getSupplier(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "编辑供应商";
|
||||
});
|
||||
},
|
||||
// 删除按钮操作
|
||||
handleDelete(row) {
|
||||
const name = row.name
|
||||
this.$modal.confirm('确定删除"' + name + '"的供应商信息?').then(function() {
|
||||
return delSupplier(row.id);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
// 提交按钮
|
||||
submitForm: function() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id) {
|
||||
updateSupplier(this.form).then(response => {
|
||||
this.$modal.msgSuccess("供应商更新成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addSupplier(this.form).then(response => {
|
||||
this.$modal.msgSuccess("供应商新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
// 排序触发事件
|
||||
handleSortChange(column, prop, order) {
|
||||
this.queryParams.orderByColumn = column.prop;
|
||||
this.queryParams.isAsc = column.order;
|
||||
this.getList();
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.app-container{
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
background: #f6f8f9;
|
||||
}
|
||||
</style>
|
@ -1271,7 +1271,7 @@ export default {
|
||||
// 删除按钮操作
|
||||
handleDelete(row) {
|
||||
const name = row.name
|
||||
this.$modal.confirm('确定删除"' + name + '"的会员信息?').then(function() {
|
||||
this.$modal.confirm('确定删除"' + name + '"的固定等级信息?').then(function() {
|
||||
// return deleteMember(row.id);
|
||||
return delFixingLevel(row.id);
|
||||
}).then(() => {
|
||||
@ -1282,7 +1282,7 @@ export default {
|
||||
// 删除按钮操作
|
||||
handleDeleteMember(row) {
|
||||
const name = row.name
|
||||
this.$modal.confirm('确定删除"' + name + '"的会员信息?').then(function() {
|
||||
this.$modal.confirm('确定删除"' + name + '"的认证会员信息?').then(function() {
|
||||
// return deleteMember(row.id);
|
||||
return delCertifiedMember(row.id);
|
||||
}).then(() => {
|
||||
|
@ -848,7 +848,7 @@ export default {
|
||||
// 删除按钮操作
|
||||
handleDelete(row) {
|
||||
const name = row.realName || this.id;
|
||||
this.$modal.confirm('是否确认删除"' + name + '"的数据项?').then(function() {
|
||||
this.$modal.confirm('是否确认删除"' + name + '"的员工信息?').then(function() {
|
||||
return delStaff(row.id);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
|
@ -13,9 +13,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author :admin
|
||||
* @date : 2023/10/16
|
||||
* 便利店商品管理
|
||||
* 便利店商品分类管理 controller层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/business/cvsGoods")
|
||||
@ -24,7 +22,7 @@ public class CvsGoodsController extends BaseController {
|
||||
@Autowired
|
||||
private CvsGoodsService cvsGoodsService;
|
||||
|
||||
/**新增商品类别*/
|
||||
/**新增商品分类类别*/
|
||||
@PostMapping("/addCvsGoods")
|
||||
public ResponseObject insertCvsGoods( @RequestBody CvsGoods goods){
|
||||
int i = cvsGoodsService.insertCvsGoods(goods);
|
||||
@ -36,9 +34,11 @@ public class CvsGoodsController extends BaseController {
|
||||
}
|
||||
|
||||
/**分页查询*/
|
||||
@PostMapping("/selectTree")
|
||||
private ResponseObject selectTree(@RequestBody CvsGoods goods){
|
||||
Page page =new Page<>(goods.getPageNum(),goods.getPageSize());
|
||||
@GetMapping("/selectTree")
|
||||
private ResponseObject selectTree(CvsGoods goods,
|
||||
@RequestParam(value = "pageNo",defaultValue = "1") Integer pageNo,
|
||||
@RequestParam(value = "pageSize",defaultValue = "10") Integer pageSize){
|
||||
Page page =new Page(pageNo,pageSize);
|
||||
IPage<CvsGoodsVo> list = cvsGoodsService.selectTree(page,goods);
|
||||
return getSuccessResult(list);
|
||||
}
|
||||
@ -58,7 +58,7 @@ public class CvsGoodsController extends BaseController {
|
||||
CvsGoods cvsGoods = cvsGoodsService.selectParentById(id);
|
||||
return getSuccessResult(cvsGoods);
|
||||
}
|
||||
//删除
|
||||
//删除商品分类信息
|
||||
@DeleteMapping("/{id}")
|
||||
public ResponseObject selectDeleteId(@PathVariable Integer id)
|
||||
{
|
||||
@ -69,6 +69,11 @@ public class CvsGoodsController extends BaseController {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品分类信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
@PutMapping
|
||||
public ResponseObject edit(@Validated @RequestBody CvsGoods goods){
|
||||
int row = cvsGoodsService.updateCvsGood(goods);
|
||||
|
@ -0,0 +1,78 @@
|
||||
package com.fuint.business.convenienceSore.controller;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.fuint.business.convenienceSore.entity.LJGoods;
|
||||
import com.fuint.business.convenienceSore.service.LJGoodsService;
|
||||
import com.fuint.framework.web.BaseController;
|
||||
import com.fuint.framework.web.ResponseObject;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
/**
|
||||
* 商品信息 controller层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/business/convenience/goods")
|
||||
public class LJGoodsController extends BaseController {
|
||||
@Autowired
|
||||
private LJGoodsService goodsService;
|
||||
|
||||
/**
|
||||
* 根据条件查询商品信息
|
||||
* @param goods
|
||||
* @param pageNo
|
||||
* @param pageSize
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
public ResponseObject list(LJGoods goods,
|
||||
@RequestParam(value = "pageNo",defaultValue = "1") Integer pageNo,
|
||||
@RequestParam(value = "pageSize",defaultValue = "10") Integer pageSize){
|
||||
Page page =new Page(pageNo,pageSize);
|
||||
IPage<LJGoods> list = goodsService.selectLJGoodsList(page,goods);
|
||||
return getSuccessResult(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id查询商品信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/{id}")
|
||||
public ResponseObject staffInfo(@PathVariable Integer id){
|
||||
LJGoods goods = goodsService.selectLJGoodsById(id);
|
||||
return getSuccessResult(goods);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除商品信息
|
||||
* @return
|
||||
*/
|
||||
@DeleteMapping("/{id}")
|
||||
public ResponseObject remove(@PathVariable Integer id){
|
||||
goodsService.deleteLJGoodsById(id);
|
||||
return getSuccessResult("操作成功");
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
@PostMapping
|
||||
public ResponseObject add(@Validated @RequestBody LJGoods goods){
|
||||
return getSuccessResult(goodsService.insertLJGoods(goods));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
@PutMapping
|
||||
public ResponseObject edit(@Validated @RequestBody LJGoods goods){
|
||||
return getSuccessResult(goodsService.updateLJGoods(goods));
|
||||
}
|
||||
}
|
@ -10,6 +10,9 @@ import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
/**
|
||||
* 供应商 controller层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/business/convenience/supplier")
|
||||
public class SupplierController extends BaseController {
|
||||
@ -33,7 +36,7 @@ public class SupplierController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id查询会员等级信息
|
||||
* 根据id查询供应商信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@ -44,7 +47,7 @@ public class SupplierController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除会员等级信息
|
||||
* 删除供应商信息
|
||||
* @return
|
||||
*/
|
||||
@DeleteMapping("/{id}")
|
||||
@ -54,7 +57,7 @@ public class SupplierController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加会员等级信息
|
||||
* 添加供应商信息
|
||||
* @param supplier
|
||||
* @return
|
||||
*/
|
||||
@ -64,7 +67,7 @@ public class SupplierController extends BaseController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改会员等级信息
|
||||
* 修改供应商信息
|
||||
* @param supplier
|
||||
* @return
|
||||
*/
|
||||
|
@ -105,6 +105,11 @@ public class LJGoods extends BaseEntity implements Serializable {
|
||||
*/
|
||||
@ApiModelProperty("状态:启用、禁用")
|
||||
private String status;
|
||||
/**
|
||||
* 是否在回收站:0不在回收站,1在回收站
|
||||
*/
|
||||
@ApiModelProperty("是否在回收站:0不在回收站,1在回收站")
|
||||
private String isRecovery;
|
||||
|
||||
}
|
||||
|
||||
|
@ -8,16 +8,28 @@
|
||||
<select id="selectLJGoodsList" resultType="com.fuint.business.convenienceSore.entity.LJGoods">
|
||||
<include refid="selectLJGoods"></include>
|
||||
<where>
|
||||
store_id = #{goods.storeId}
|
||||
<!-- <if test="pid != null">-->
|
||||
<!-- and pid = #{pid}-->
|
||||
<!-- </if>-->
|
||||
<!-- <if test="categoryName != null and categoryName != ''">-->
|
||||
<!-- and category_name = #{categoryName}-->
|
||||
<!-- </if>-->
|
||||
<!-- <if test="sorted != null and sorted != ''">-->
|
||||
<!-- and sorted = #{sorted}-->
|
||||
<!-- </if>-->
|
||||
store_id = #{goods.storeId} and is_recovery = #{goods.isRecovery}
|
||||
<if test="goods.cvsGoodId != null and goods.cvsGoodId != ''">
|
||||
and cvs_good_id like concat('%', #{goods.cvsGoodId}, '%')
|
||||
</if>
|
||||
<if test="goods.supplierId != null and goods.supplierId != ''">
|
||||
and supplier_id like concat('%', #{goods.supplierId}, '%')
|
||||
</if>
|
||||
<if test="goods.name != null and goods.name != ''">
|
||||
and name like concat('%', #{goods.name}, '%')
|
||||
</if>
|
||||
<if test="goods.pinyinCode != null and goods.pinyinCode != ''">
|
||||
and pinyin_code like concat('%', #{goods.pinyinCode}, '%')
|
||||
</if>
|
||||
<if test="goods.goodsNo != null and goods.goodsNo != ''">
|
||||
and goods_no like concat('%', #{goods.goodsNo}, '%')
|
||||
</if>
|
||||
<if test="goods.shelfNumber != null and goods.shelfNumber != ''">
|
||||
and shelf_number like concat('%', #{goods.shelfNumber}, '%')
|
||||
</if>
|
||||
<if test="goods.status != null and goods.status != ''">
|
||||
and status = #{goods.status}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
@ -8,16 +8,16 @@
|
||||
<select id="selectSupplierList" resultType="com.fuint.business.convenienceSore.entity.Supplier">
|
||||
<include refid="selectSupplier"></include>
|
||||
<where>
|
||||
store_id = #{goods.storeId}
|
||||
<!-- <if test="pid != null">-->
|
||||
<!-- and pid = #{pid}-->
|
||||
<!-- </if>-->
|
||||
<!-- <if test="categoryName != null and categoryName != ''">-->
|
||||
<!-- and category_name = #{categoryName}-->
|
||||
<!-- </if>-->
|
||||
<!-- <if test="sorted != null and sorted != ''">-->
|
||||
<!-- and sorted = #{sorted}-->
|
||||
<!-- </if>-->
|
||||
store_id = #{supplier.storeId}
|
||||
<if test="supplier.name != null and supplier.name != ''">
|
||||
and name like concat('%', #{supplier.name}, '%')
|
||||
</if>
|
||||
<if test="supplier.contacts != null and supplier.contacts != ''">
|
||||
and contacts like concat('%', #{supplier.contacts}, '%')
|
||||
</if>
|
||||
<if test="supplier.mobile != null and supplier.mobile != ''">
|
||||
and mobile like concat('%', #{supplier.mobile}, '%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
@ -9,18 +9,18 @@ import io.swagger.models.auth.In;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 便利店商品信息 业务层
|
||||
* 便利店商品分类信息 业务层
|
||||
*/
|
||||
public interface CvsGoodsService {
|
||||
/**
|
||||
* 添加商品信息
|
||||
* 添加商品分类信息
|
||||
* @param cvsGoods
|
||||
* @return
|
||||
*/
|
||||
int insertCvsGoods(CvsGoods cvsGoods);
|
||||
|
||||
/**
|
||||
* 根据条件分页查询商品信息
|
||||
* 根据条件分页查询商品分类信息
|
||||
* @param page
|
||||
* @param goods
|
||||
* @return
|
||||
@ -35,20 +35,20 @@ public interface CvsGoodsService {
|
||||
List<CvsGoods> selectCvsGoodsList(CvsGoods goods);
|
||||
|
||||
/**
|
||||
* 根据id查询商品信息
|
||||
* 根据id查询商品分类信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
CvsGoods selectParentById(Integer id);
|
||||
|
||||
/**
|
||||
* 根据id删除商品信息
|
||||
* 根据id删除商品分类信息
|
||||
* @param id
|
||||
*/
|
||||
void deleteByIdVo(Integer id);
|
||||
|
||||
/**
|
||||
* 修改商品信息
|
||||
* 修改商品分类信息
|
||||
* @param goods
|
||||
*/
|
||||
int updateCvsGood(CvsGoods goods);
|
||||
|
@ -4,36 +4,39 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.fuint.business.convenienceSore.entity.LJGoods;
|
||||
|
||||
/**
|
||||
* 商品信息 业务层
|
||||
*/
|
||||
public interface LJGoodsService {
|
||||
/**
|
||||
* 根据条件分页查询固定等级信息
|
||||
* 根据条件分页查询商品信息
|
||||
* @param page
|
||||
* @return
|
||||
*/
|
||||
public IPage<LJGoods> selectLJGoodsList(Page page, LJGoods goods);
|
||||
|
||||
/**
|
||||
* 根据id查询固定等级信息
|
||||
* 根据id查询商品信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public LJGoods selectLJGoodsById(int id);
|
||||
|
||||
/**
|
||||
* 根据id删除固定等级信息
|
||||
* 根据id删除商品信息
|
||||
* @param id
|
||||
*/
|
||||
public void deleteLJGoodsById(Integer id);
|
||||
|
||||
/**
|
||||
* 增加固定等级信息
|
||||
* 增加商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
public int insertLJGoods(LJGoods goods);
|
||||
|
||||
/**
|
||||
* 修改固定等级信息
|
||||
* 修改商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
|
@ -19,14 +19,13 @@ import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
/**
|
||||
* @author :admin
|
||||
* @date : 2023/10/16
|
||||
* 便利店商品分类信息 业务层
|
||||
*/
|
||||
@Service
|
||||
public class CvsGoodsServiceImpl extends ServiceImpl<CvsGoodsMapper,CvsGoods> implements CvsGoodsService {
|
||||
|
||||
/**
|
||||
* 添加商品信息
|
||||
* 添加商品分类信息
|
||||
*/
|
||||
@Transactional
|
||||
public int insertCvsGoods( CvsGoods cvsGoods){
|
||||
@ -43,7 +42,7 @@ public class CvsGoodsServiceImpl extends ServiceImpl<CvsGoodsMapper,CvsGoods> im
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据条件分页查询商品信息
|
||||
* 根据条件分页查询商品分类信息
|
||||
* @param page
|
||||
* @param g
|
||||
* @return
|
||||
@ -122,7 +121,7 @@ public class CvsGoodsServiceImpl extends ServiceImpl<CvsGoodsMapper,CvsGoods> im
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id删除商品信息
|
||||
* 根据id删除商品分类信息
|
||||
* @param id
|
||||
*/
|
||||
@Override
|
||||
@ -131,7 +130,7 @@ public class CvsGoodsServiceImpl extends ServiceImpl<CvsGoodsMapper,CvsGoods> im
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品信息
|
||||
* 修改商品分类信息
|
||||
* @param goods
|
||||
*/
|
||||
@Override
|
||||
|
@ -11,12 +11,12 @@ import com.fuint.common.util.TokenUtil;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 固定等级信息 业务层
|
||||
* 商品信息 业务层
|
||||
*/
|
||||
@Service
|
||||
public class LJGoodsServiceImpl extends ServiceImpl<LJGoodsMapper, LJGoods> implements LJGoodsService {
|
||||
/**
|
||||
* 根据条件分页查询固定等级信息
|
||||
* 根据条件分页查询商品信息
|
||||
* @param page
|
||||
* @return
|
||||
*/
|
||||
@ -30,7 +30,7 @@ public class LJGoodsServiceImpl extends ServiceImpl<LJGoodsMapper, LJGoods> impl
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id查询固定等级信息
|
||||
* 根据id查询商品信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@ -40,7 +40,7 @@ public class LJGoodsServiceImpl extends ServiceImpl<LJGoodsMapper, LJGoods> impl
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id删除固定等级信息
|
||||
* 根据id删除商品信息
|
||||
* @param id
|
||||
*/
|
||||
@Override
|
||||
@ -49,7 +49,7 @@ public class LJGoodsServiceImpl extends ServiceImpl<LJGoodsMapper, LJGoods> impl
|
||||
}
|
||||
|
||||
/**
|
||||
* 增加固定等级信息
|
||||
* 增加商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
@ -63,7 +63,7 @@ public class LJGoodsServiceImpl extends ServiceImpl<LJGoodsMapper, LJGoods> impl
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改固定等级信息
|
||||
* 修改商品信息
|
||||
* @param goods
|
||||
* @return
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user