Browse Source

修复已知bug

dev-xx
马远东 8 months ago
parent
commit
64c3cbff7c
  1. 8
      src/api/distribution/distributionStockArticle.js
  2. 6
      src/views/distribution/inventory/delivery/SeparateTheList.vue
  3. 119
      src/views/distribution/inventory/delivery/distributionStockArticle.vue

8
src/api/distribution/distributionStockArticle.js

@ -433,3 +433,11 @@ export const $_batchcreatetask = data => {
data, data,
}); });
}; };
//查询是否已经拆单过
export const $_checkordercode = data => {
return request({
url: '/api/logpm-distribution/split-order-task/check-order-code',
method: 'post',
data,
});
};

6
src/views/distribution/inventory/delivery/SeparateTheList.vue

@ -118,9 +118,7 @@ const $router = useRouter();
const $store = useStore(); const $store = useStore();
const details = const details =
reactive < reactive ({
any >
{
/** 是否开启搜索 */ /** 是否开启搜索 */
search: true, search: true,
/** 表格搜索条件 */ /** 表格搜索条件 */
@ -189,7 +187,7 @@ const details =
/** 查看 */ /** 查看 */
view: false, view: false,
}, },
}; });
const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } = const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } =
toRefs(details); toRefs(details);

119
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -406,6 +406,11 @@
<!-- 拆单弹窗 --> <!-- 拆单弹窗 -->
<el-dialog v-model="dialogSplitthe" title="新增拆单任务"> <el-dialog v-model="dialogSplitthe" title="新增拆单任务">
<el-button type="primary" @click="newadd">新增</el-button> <el-button type="primary" @click="newadd">新增</el-button>
<div style="margin-top: 20px" class="el_txt_title">
<el-text>拆单任务:{{ Splittheform.PackageList.length }}</el-text>
<el-text>在库件数:{{ this.dataRwo.handQuantity }}</el-text>
<el-text>拆单件数总数:{{ Totalnumbersplitorders }}</el-text>
</div>
<el-form <el-form
:model="Splittheform" :model="Splittheform"
label-width="auto" label-width="auto"
@ -423,9 +428,11 @@
> >
<el-input-number <el-input-number
v-model="item.taskNumber" v-model="item.taskNumber"
:min="1" :min="0"
:controls="false" :controls="false"
placeholder="请输入拆单件数" placeholder="请输入拆单件数"
@change="changeTaskNumber"
:value-on-clear='0'
/> />
</el-form-item> </el-form-item>
<el-form-item <el-form-item
@ -440,12 +447,7 @@
:prop="`PackageList[${index}.customerTelephone]`" :prop="`PackageList[${index}.customerTelephone]`"
:rules="ruleForm.customerTelephone" :rules="ruleForm.customerTelephone"
> >
<el-input-number <el-input v-model="item.customerTelephone" placeholder="请输入客户电话" />
v-model="item.customerTelephone"
:min="1"
:controls="false"
placeholder="请输入客户电话"
/>
</el-form-item> </el-form-item>
</div> </div>
<el-form-item <el-form-item
@ -456,6 +458,9 @@
> >
<el-input v-model="item.customerAddress" placeholder="请输入客户地址" /> <el-input v-model="item.customerAddress" placeholder="请输入客户地址" />
</el-form-item> </el-form-item>
<div class="el_delete">
<el-button type="primary" @click="packListdelete(item, index)">删除</el-button>
</div>
</div> </div>
<el-divider /> <el-divider />
</template> </template>
@ -488,6 +493,7 @@ import {
postShowOrderCode, postShowOrderCode,
getCollectt, getCollectt,
$_batchcreatetask, $_batchcreatetask,
$_checkordercode,
} from '@/api/distribution/distributionStockArticle'; } from '@/api/distribution/distributionStockArticle';
import { getListOwn } from '@/api/distribution/distributionParcelList'; import { getListOwn } from '@/api/distribution/distributionParcelList';
import { addCallDelivery, $_updateBatchClient } from '@/api/distribution/distrilbutionCallDelivery'; import { addCallDelivery, $_updateBatchClient } from '@/api/distribution/distrilbutionCallDelivery';
@ -511,20 +517,16 @@ export default {
return { return {
excelForm: {}, excelForm: {},
excelBox: false, excelBox: false,
Totalnumbersplitorders: 0,
dataRwo: {}, dataRwo: {},
ruleForm: { ruleForm: {
taskNumber: [ taskNumber: [{ required: true, message: '请输入请输入拆单件数', trigger: ['change'] }],
{ required: true, message: '请输入请输入拆单件数', trigger: ['blur', 'change'] }, customerName: [{ required: true, message: '请输入请输入客户名称', trigger: ['change'] }],
],
customerName: [
{ required: true, message: '请输入请输入客户名称', trigger: ['blur', 'change'] },
],
customerTelephone: [ customerTelephone: [
{ required: true, message: '请输入请输入客户电话', trigger: ['blur', 'change'] }, { required: true, message: '请输入请输入客户电话', trigger: ['change'] },
], { validator: this.validatePhone, trigger: 'blur' },
customerAddress: [
{ required: true, message: '请输入请输入客户地址', trigger: ['blur', 'change'] },
], ],
customerAddress: [{ required: true, message: '请输入请输入客户地址', trigger: ['change'] }],
}, },
ruleFormRef: null, ruleFormRef: null,
dialogSplitthe: false, dialogSplitthe: false,
@ -696,6 +698,13 @@ export default {
return ids.join(','); return ids.join(',');
}, },
}, },
watch: {
// item.customerTelephone
'item.customerTelephone'(newValue, aaaa) {
console.log('新值:', newValue);
console.log('旧值:', aaaa);
},
},
methods: { methods: {
// //
handleExport() { handleExport() {
@ -1205,17 +1214,73 @@ export default {
}; };
this.Splittheform.PackageList.push(data); this.Splittheform.PackageList.push(data);
}, },
//
validatePhone(rule, value, callback) {
const phonePattern = /^1[3-9]\d{9}$/; //
if (!value) {
callback(new Error('请输入客户电话'));
} else if (!phonePattern.test(value)) {
callback(new Error('请输入有效的电话号码'));
} else {
callback();
}
},
// //
Splittheorder(row) { Splittheorder(row) {
console.log(row); console.log(row);
this.dataRwo = row; this.dataRwo = row;
let data={
orderCode:row.orderCode,
}
$_checkordercode(data).then(res=>{
console.log(res,'是否可以拆单');
})
this.dialogSplitthe = true; this.dialogSplitthe = true;
}, },
//
changeTaskNumber() {
this.Totalnumbersplitorders = this.Splittheform.PackageList.reduce(
(accumulator, currentValue) => {
if (!currentValue || currentValue.taskNumber == null) {
return accumulator;
}
return accumulator + currentValue.taskNumber;
},
0
);
},
//
packListdelete(item, index) {
if (this.Splittheform.PackageList.length == 1) {
this.$message({
message: '至少保留一条数据',
type: 'warning',
});
return;
}
ElMessageBox.confirm('是否确认删除?', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
this.Splittheform.PackageList.splice(index, 1);
})
.catch(() => {});
},
// //
Splitordersubmission() { Splitordersubmission() {
console.log(this.dataRwo); console.log(this.dataRwo);
this.$refs.ruleFormRef.validate(vialid => { this.$refs.ruleFormRef.validate(vialid => {
if (vialid) { if (vialid) {
let taskNumberState = this.Splittheform.PackageList.find(item => item.taskNumber == 0);
if (taskNumberState) {
this.$message({
message: '存在拆单数量能为0的任务',
type: 'warning',
});
return;
}
console.log(this.Splittheform.PackageList); console.log(this.Splittheform.PackageList);
let sum = this.Splittheform.PackageList.reduce((accumulator, currentValue) => { let sum = this.Splittheform.PackageList.reduce((accumulator, currentValue) => {
if (!currentValue || currentValue.taskNumber == null) { if (!currentValue || currentValue.taskNumber == null) {
@ -1236,16 +1301,14 @@ export default {
data.push({ data.push({
stockArticleId: this.dataRwo.id, //ID stockArticleId: this.dataRwo.id, //ID
orderCode: this.dataRwo.orderCode, // orderCode: this.dataRwo.orderCode, //
mallName: this.dataRwo.mallName, //
mallName: this.dataRwo.mallName, // mallName: this.dataRwo.mallName, //
taskNumber: item.taskNumber, // taskNumber: item.taskNumber, //
customerName: item.customerName, // customerName: item.customerName, //
customerTelephone: item.customerTelephone, // customerTelephone: item.customerTelephone, //
customerAddress: item.customerAddress, // customerAddress: item.customerAddress, //
}); });
}); });
// this.dataRwo.handQuantity
console.log(data, '要提交的数据'); console.log(data, '要提交的数据');
$_batchcreatetask(data).then(res => { $_batchcreatetask(data).then(res => {
console.log(res, '拆单成功'); console.log(res, '拆单成功');
@ -1654,6 +1717,13 @@ export default {
flex-wrap: wrap; flex-wrap: wrap;
height: 450px; height: 450px;
overflow-y: scroll; overflow-y: scroll;
.el_delete {
text-align: right;
.el-button {
background-color: #f44336;
border: none;
}
}
.el_item_box { .el_item_box {
width: 100%; width: 100%;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -1661,7 +1731,7 @@ export default {
margin-top: 10px; margin-top: 10px;
border-radius: 7px; border-radius: 7px;
box-shadow: 1px 1px #ccc; box-shadow: 1px 1px #ccc;
height: max-content;
.el-form-item { .el-form-item {
width: unset; width: unset;
} }
@ -1691,4 +1761,11 @@ export default {
} }
} }
} }
.el_txt_title {
margin-top: 20px;
.el-text {
margin: 0 10px;
font-weight: bold;
}
}
</style> </style>

Loading…
Cancel
Save