Browse Source

发运结算中发货计划和非本田补给品发货,批次策略去掉添加条件

intex_online20241228
张立 2 months ago
parent
commit
51a0838a3f
  1. 4
      src/views/wms/basicDataManage/strategySetting/strategy/batchStrategy/AddForm.vue
  2. 1
      src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts
  3. 1
      src/views/wms/deliversettlementManage/deliver/deliverRecordMain/deliverRecordMain.data.ts
  4. 5
      src/views/wms/deliversettlementManage/deliver/deliverRequestMain/deliverRequestMain.data.ts
  5. 26
      src/views/wms/deliversettlementManage/deliverplan/deliverPlanMain/deliverPlanMain.data.ts
  6. 11
      src/views/wms/deliversettlementManage/deliverplan/saleMain/saleMain.data.ts

4
src/views/wms/basicDataManage/strategySetting/strategy/batchStrategy/AddForm.vue

@ -245,12 +245,12 @@
</div>
</div>
</div>
<div class="button flex">
<!-- <div class="button flex">
<div @click="handleAddTable(formData.configuration.ManagementPrecision)">
<Icon icon="ep:circle-plus" color="#409eff" size="26" style="cursor: pointer" />
<div>添加条件</div>
</div>
</div>
</div> -->
</el-form-item>
</el-col>
</el-row>

1
src/views/wms/deliversettlementManage/deliver/deliverJobMain/deliverJobMain.data.ts

@ -784,7 +784,6 @@ export const DeliverJobDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: {
width: 150
},
hiddenInMain: true
},
{
label: '描述',

1
src/views/wms/deliversettlementManage/deliver/deliverRecordMain/deliverRecordMain.data.ts

@ -576,7 +576,6 @@ export const DeliverRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: {
width: 150
},
hiddenInMain: true
},
{
label: '描述',

5
src/views/wms/deliversettlementManage/deliver/deliverRequestMain/deliverRequestMain.data.ts

@ -869,9 +869,8 @@ export const DeliverRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: {
width: 150
},
hiddenInMain:true,
isForm: false,
isTableForm: false
isTableForm: false,
isForm: false
},
{
label: '描述',

26
src/views/wms/deliversettlementManage/deliverplan/deliverPlanMain/deliverPlanMain.data.ts

@ -614,7 +614,7 @@ export const DeliverPlanDetail = useCrudSchemas(reactive<CrudSchema[]>([
field: 'itemCode',
sort: 'custom',
table: {
width: 150
minWidth: 150
},
tableForm:{
multiple:true,
@ -647,12 +647,22 @@ export const DeliverPlanDetail = useCrudSchemas(reactive<CrudSchema[]>([
}
}
},
{
label: '背番',
field: 'itemDesc1',
sort: 'custom',
table: {
minWidth: 150
},
isTableForm: false,
isForm: false
},
{
label: '计划数量',
field: 'planQty',
sort: 'custom',
table: {
width: 150
minWidth: 150
},
form: {
component: 'InputNumber',
@ -677,7 +687,7 @@ export const DeliverPlanDetail = useCrudSchemas(reactive<CrudSchema[]>([
isTable: true,
sort: 'custom',
table: {
width: 150
minWidth: 150
},
tableForm: {
disabled: true,
@ -957,6 +967,16 @@ export const DeliverPlanDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([
}
}
},
{
label: '背番',
field: 'itemDesc1',
sort: 'custom',
table: {
width: 150
},
isTableForm: false,
isForm: false
},
{
label: '计划数量',
field: 'planQty',

11
src/views/wms/deliversettlementManage/deliverplan/saleMain/saleMain.data.ts

@ -622,6 +622,17 @@ export const SaleDetail = useCrudSchemas(reactive<CrudSchema[]>([
}
}
},
{
label: '背番',
field: 'itemDesc1',
sort: 'custom',
table: {
width: 150
},
hiddenInMain: true,
isTableForm:false,
isForm:false
},
{
label: '备注',
field: 'remark',

Loading…
Cancel
Save