Browse Source

新增盘点任务编辑功能

fix_bug_pro20231227
qb 2 years ago
parent
commit
97ed2bd02f
  1. 33
      src/api/distribution/createTask.js
  2. 335
      src/views/distribution/checkInventoryTask/createTask.vue

33
src/api/distribution/createTask.js

@ -10,4 +10,37 @@ export const getDictList = params => {
method: 'get',
params,
});
};
/**
* 添加盘点任务
*/
export const postAddtaskQuest = data => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/save',
method: 'post',
data,
});
};
/**
* 获取盘点列表
*/
export const getTaskQuestPage = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/page',
method: 'get',
params,
});
};
/**
* 编辑盘点任务
*/
export const postEditTaskQuestUpdate = data => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/update',
method: 'post',
data,
});
};

335
src/views/distribution/checkInventoryTask/createTask.vue

@ -1,8 +1,8 @@
<template>
<basic-container>
<div class="avue-crud">
<!-- 查询模块 -->
<el-row v-if="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<div class="fo-rl">
<el-form-item label="货物名称:">
@ -22,6 +22,8 @@
</el-form-item>
</el-form>
</el-row>
<!-- 控件区 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
@ -38,8 +40,9 @@
</div>
</div>
</el-row>
<!-- 列表模块 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
:columnList="columnList"
:tableData="data"
@ -55,30 +58,32 @@
type="primary"
text
icon="el-icon-view"
@click="handleViewCheck(slotProps.scope)"
@click="handleViewCheck(slotProps.scope.row)"
> </el-text
>
<el-text
type="primary"
text
icon="el-icon-view"
@click="handleEditCheck(slotProps.scope)"
@click="handleEditCheck(slotProps.scope.row)"
> </el-text
>
<el-text
type="primary"
text
icon="el-icon-view"
@click="handleDeleteCheck(slotProps.scope)"
@click="handleDeleteCheck(slotProps.scope.row)"
> </el-text
>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<!-- 分页 -->
<el-pagination
align="right"
background
@ -102,14 +107,12 @@
center
:before-close="beforeClose"
append-to-body
:disabled="view"
>
<el-form :disabled="view" ref="form" :model="form" label-width="120px">
<!-- 表单字段 -->
<el-form-item label="订单自编号" prop="orderCode">
<el-input v-model="form.orderCode" placeholder="请输入订单自编号" clearable />
</el-form-item>
<el-form-item label="商场名称" prop="orderCode">
<el-select v-model="form.region" multiple placeholder="请选择商场" clearable>
<!-- 商场名称 -->
<el-form-item label="商场名称">
<el-select v-model="form.clientList" multiple placeholder="请选择商场" clearable>
<template v-if="form.selectList && form.selectList.length !== 0">
<el-option
v-for="item in form.selectList"
@ -119,10 +122,14 @@
</template>
</el-select>
</el-form-item>
<el-form-item label="品牌" prop="orderCode">
<!-- 品牌 -->
<el-form-item label="品牌">
<el-input v-model="form.brandName" placeholder="品牌名称" disabled />
</el-form-item>
<el-form-item label="订单时间">
<!-- 盘点时间 -->
<el-form-item label="盘点时间">
<div class="block" prop="time">
<el-date-picker
v-model="form.time"
@ -134,6 +141,21 @@
/>
</div>
</el-form-item>
<!-- 盘点订单状态 -->
<template v-if="isEdit">
<el-form-item label="盘点订单状态">
<el-select v-model="form.dictKey" placeholder="请选择订单状态" clearable>
<template v-if="this.typeData.length !== 0">
<el-option
v-for="item in this.typeData"
:label="item.dictValue"
:value="item.dictKey"
/>
</template>
</el-select>
</el-form-item>
</template>
</el-form>
<!-- 表单按钮 -->
<template #footer>
@ -163,7 +185,12 @@
</template>
<script>
import { getDictList } from '@/api/distribution/createTask';
import {
getDictList,
postAddtaskQuest,
getTaskQuestPage,
postEditTaskQuestUpdate,
} from '@/api/distribution/createTask';
import { mapGetters } from 'vuex';
import dayjs from 'dayjs';
import { getDictionaryBiz } from '@/api/system/dict';
@ -185,52 +212,71 @@ export default {
checkarr: [],
fixed: true,
},
{
prop: 'serviceNumber',
prop: 'questNum',
label: '任务编号',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'warehouseName',
label: '仓库名称',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: true,
fixed: false,
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
prop: 'marketName',
label: '商城名称',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: true,
fixed: false,
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
prop: 'brandName',
label: '品牌名称',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'startTime',
label: '任务开始时间',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: true,
fixed: false,
sortable: true,
head: false,
},
{
prop: 'serviceNumber',
prop: 'endTime',
label: '任务结束时间',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: true,
fixed: false,
sortable: true,
head: false,
},
{
@ -240,26 +286,25 @@ export default {
values: '',
width: '130',
checkarr: [],
fixed: true,
fixed: false,
sortable: true,
head: false,
},
{
prop: 'unpack',
label: '拆包状态',
prop: 'questStatusName',
label: '状态',
type: 1,
values: '',
width: '130',
checkarr: [
{
value: `true`,
label: '是',
},
{
value: `false`,
label: '否',
},
// {
// value: `true`,
// label: '',
// },
// {
// value: `false`,
// label: '',
// },
],
fixed: false,
sortable: true,
@ -313,6 +358,9 @@ export default {
selectionList: [],
//
data: [],
//
typeData: [],
};
},
mounted() {
@ -402,14 +450,43 @@ export default {
},
methods: {
timeChange(value) {
console.log('value :>> ', value);
value.forEach((item)=>{
console.log('item :>> ', item);
item.getFullYear()
console.log('item.getFullYear() :>> ', item.getFullYear());
// const date = new Date(item)
// console.log('date :>> ', date);
})
//
const _time = new Date().getTime();
//
const _isTime = value.every(item => {
console.log('item.toLocaleString() :>> ', item.toLocaleString());
return _time < item.getTime();
});
if (!_isTime) {
this.form.time = [];
return this.$message({
type: 'error',
message: '开始时间不能小于当前时间',
});
}
// _time.toLocaleTimeString()
// console.log('_time.toLocaleTimeString() :>> ', _time.toLocaleString());
},
//
filterTime(time) {
const y = time.getFullYear();
const m = time;
myDate.getYear(); //(2)
myDate.getFullYear(); //(4,1970-????)
myDate.getMonth(); //(0-11,01)
myDate.getDate(); //(1-31)
myDate.getDay(); //X(0-6,0)
myDate.getTime(); //(1970.1.1)
myDate.getHours(); //(0-23)
myDate.getMinutes(); //(0-59)
myDate.getSeconds(); //(0-59)
myDate.getMilliseconds(); //(0-999)
myDate.toLocaleDateString(); //
var mytime = myDate.toLocaleTimeString(); //
myDate.toLocaleString(); //
},
showdrawer(value) {
@ -540,10 +617,92 @@ export default {
},
//
handleSubmit() {},
async handleSubmit() {
//
if (!this.form.time || this.form.time.length === 0) {
return this.$message({
type: 'error',
message: '请选择盘点时间',
});
}
const formData = {};
formData.list = [];
//
this.form.selectList.forEach(val => {
if (this.form.clientList.includes(val.id))
formData.list.push({
refId: val.id,
refName: val.clientName,
});
});
//
formData.startTime = this.form.time[0].toLocaleString();
//
formData.endTime = this.form.time[1].toLocaleString();
console.log('formData :>> ', formData);
const res = await postAddtaskQuest(formData);
const { code, msg } = res.data;
if (code === 200)
this.$message({
message: msg,
type: 'success',
});
//
this.onLoad();
//
this.box = false;
},
//
handleEditSubmit() {},
async handleEditSubmit() {
console.log('this.form :>> ', this.form);
//
if (!this.form.time || this.form.time.length === 0) {
return this.$message({
type: 'error',
message: '请选择盘点时间',
});
}
const formData = {};
formData.list = [];
//
this.form.selectList.forEach(val => {
if (this.form.clientList.includes(val.id))
formData.list.push({
refId: val.id,
refName: val.clientName,
});
});
//
formData.startTime = this.form.time[0].toLocaleString();
//
formData.endTime = this.form.time[1].toLocaleString();
console.log('formData :>> ', formData);
formData.questStatus = this.form.dictKey;
formData.questNum = this.form.questNum;
const res = await postEditTaskQuestUpdate(formData);
const { code, msg } = res.data;
console.log('msg :>> ', msg);
console.log('res :>> ', res);
if (code === 200)
this.$message({
message: msg,
type: 'success',
});
//
this.onLoad();
//
this.box = false;
},
handleDelete() {
if (this.selectionList.length === 0) {
@ -601,11 +760,36 @@ export default {
/**
* 编辑单个任务
*/
handleEditCheck(row) {
async handleEditCheck(row) {
this.title = '编辑盘点任务';
this.isEdit = true; //
this.box = true; //
console.log('row :>> ', row);
this.form.brandName = row.brandName;
this.form.time = [row.startTime, row.endTime];
this.form.clientList = row.list.map(val => val.refId);
this.form.dictKey = row.questStatus;
this.form.selectList = [];
this.form.questNum = row.questNum;
console.log('this.form :>> ', this.form);
//
const res = await getDictList();
const { code, data } = res.data;
if (code === 200 && !!data) {
console.log('data :>> ', data);
this.form.selectList = data.map(item => {
return {
//
clientName: item.clientName,
// id
id: item.id,
//
brandName: item.brandName,
};
});
}
},
beforeClose(done) {
@ -627,31 +811,60 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
async onLoad(page, params = {}) {
this.loading = true;
this.query.serviceType = '3';
const postData = { ...page, ...params };
const res = await getTaskQuestPage(postData);
const {
code,
data: { records },
} = res.data;
this.data = [];
if (code === 200) this.data = records;
console.log('records :>> ', records);
this.data.forEach(val => {
val.brandName = '';
val.marketName = '';
val.list.forEach(item => {
if (item.brandName) val.brandName += item.brandName + ',';
if (item.refName) val.marketName += item.refName + ',';
});
});
this.loading = false;
//
getDictionaryBiz('warehouse_quest_status').then(res => {
this.typeData = res.data.data.map(val => {
return {
dictKey: val.dictKey,
dictValue: val.dictValue,
};
});
});
},
},
watch: {
//
'form.region'(newVal) {
'form.clientList'(newVal) {
let _newVal = Array.from(newVal);
let _value = '';
// ,
if (newVal.length === 0) return (this.form.brandName = _value);
if (_newVal.length === 0) return (this.form.brandName = _value);
console.log('this.form.selectList :>> ', this.form.selectList);
//
this.form.brandName = newVal.reduce((curr, item)=> {
const _brandName = this.form.selectList.find(val => val.id === item).brandName;
if (_brandName) return curr += _brandName;
return curr
}, '')
this.form.brandName = _newVal.reduce((curr, item) => {
const _brand = this.form.selectList.find(val => val.id === item);
if (_brand) return (curr += _brand.brandName);
return curr;
}, '');
},
},
};
</script>
<style lang="scss" scoped>
<style scoped lang="scss">
.zhu {
display: flex;
flex-direction: row;
@ -676,8 +889,6 @@ export default {
.demo-form-inline .el-input {
--el-input-width: 220px;
}
</style>
<style scoped lang="scss">
.el-row:first-of-type {
/* 样式规则 */
.el-form {

Loading…
Cancel
Save