Browse Source

1.统计货位

fix_bug_pro20231227
0.0 2 years ago
parent
commit
89ba5e5078
  1. 8
      src/option/distribution/distributionParcelList.js
  2. 2
      src/views/basicdata/team/basicdataTeamGroup.vue
  3. 40
      src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue
  4. 20
      src/views/warehouse/parcelList/distributionParcelList.vue

8
src/option/distribution/distributionParcelList.js

@ -120,10 +120,10 @@ export default {
label: "上架状态", label: "上架状态",
prop: "orderPackageGroundingStatusName", prop: "orderPackageGroundingStatusName",
}, },
{ // {
label: "货位信息", // label: "货位信息",
prop: "allocationMsg", // prop: "allocationMsg",
}, // },
{ {
label: "数量", label: "数量",
prop: "quantity", prop: "quantity",

2
src/views/basicdata/team/basicdataTeamGroup.vue

@ -359,7 +359,6 @@ export default {
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
if (!this.form.id) { if (!this.form.id) {
console.log(">><><<>",this.form);
this.form.groupType = this.form.groupTypes.join(','); this.form.groupType = this.form.groupTypes.join(',');
add(this.form).then(() => { add(this.form).then(() => {
@ -371,7 +370,6 @@ export default {
}); });
}); });
} else { } else {
console.log("修改《《《《",this.form);
this.form.groupType = this.form.groupTypes.join(','); this.form.groupType = this.form.groupTypes.join(',');
update(this.form).then(() => { update(this.form).then(() => {
this.box = false; this.box = false;

40
src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue

@ -83,7 +83,7 @@
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text> <el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text>
</template> </template>
</tablecmt> </tablecmt>
</el-row> </el-row>
<el-row> <el-row>
<div class="avue-crud__pagination" style="width:100%"> <div class="avue-crud__pagination" style="width:100%">
@ -245,11 +245,41 @@ export default {
head: false, head: false,
}, },
{ {
prop: 'areaTypeName', prop: 'cargoNub',
label: '货区类型', label: '总货位',
type: 2, type: 1,
values: '', values: '',
width: '200', width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'employNub',
label: '使用货位',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unusedNub',
label: '可用货位',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'disableNub',
label: '禁用货位',
type: 1,
values: '',
width: '100',
checkarr: [], checkarr: [],
fixed: false, fixed: false,
sortable: true, sortable: true,

20
src/views/warehouse/parcelList/distributionParcelList.vue

@ -217,16 +217,16 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{ // {
prop: 'allocationMsg', // prop: 'allocationMsg',
label: '货位信息', // label: '',
type: 1, // type: 1,
values: '', // values: '',
width: '180', // width: '180',
checkarr: [], // checkarr: [],
fixed: false, // fixed: false,
sortable: true, // sortable: true,
}, // },
{ {
prop: 'quantity', prop: 'quantity',
label: '数量', label: '数量',

Loading…
Cancel
Save