Browse Source

滞留调整、签收明细增加字段、配送任务增加字段

fix_bug_pro20231227
汤建军 1 year ago
parent
commit
6c2895c4ab
  1. 16
      src/api/warehouse/warehouseRetentionRecord.js
  2. 12
      src/router/views/index.js
  3. 10
      src/views/distribution/deliverylist/distributionDeliveryList.vue
  4. 10
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  5. 10
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  6. 35
      src/views/distribution/signdetail/distributionSigndetail.vue
  7. 1230
      src/views/warehouse/warehouseRetentionRecord/warehouseRetentionDetails.vue
  8. 67
      src/views/warehouse/warehouseRetentionRecord/warehouseRetentionRecord.vue

16
src/api/warehouse/warehouseRetentionRecord.js

@ -33,6 +33,22 @@ export const getDetail = id => {
});
};
/**
* 根据类型查询滞留包件列表类型+
* @param id
* @returns {*}
*/
export const getRetentionPackageByType = (retentionId,type) => {
return request({
url: '/api/logpm-warehouse/warehouseRetentionRecord/getRetentionPackageByType',
method: 'get',
params: {
retentionId,
type
},
});
};
export const remove = ids => {
return request({
url: '/api/logpm-warehouse/warehouseRetentionRecord/remove',

12
src/router/views/index.js

@ -604,6 +604,18 @@ export default [
},
],
},
{
path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
component: Layout,
redirect: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
children: [
{
path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
name: '滞留明细'+'name',
component: () => import('@/views/warehouse/warehouseRetentionRecord/warehouseRetentionDetails.vue'),
},
],
},
{
path: '/basic/property/basicrecordslist',
component: Layout,

10
src/views/distribution/deliverylist/distributionDeliveryList.vue

@ -565,6 +565,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'signingNumber',
label: '签收件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'loadingTeamName',
label: '装卸班组',

10
src/views/distribution/deliverylist/distributionDeliveryListdis.vue

@ -578,6 +578,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'signingNumber',
label: '签收件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'loadingTeamName',
label: '装卸班组',

10
src/views/distribution/deliverylist/distributionDeliveryListmar.vue

@ -482,6 +482,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'signingNumber',
label: '签收件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'loadingTeamName',
label: '装车班组',

35
src/views/distribution/signdetail/distributionSigndetail.vue

@ -174,7 +174,40 @@ export default {
head: false,
},
{
prop: 'type',
prop: 'driverName',
label: '司机名称',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'driverPhone',
label: '司机电话',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'vehicleName',
label: '车牌号',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'serveType',
label: '配送类型',
type: 3,
values: '',

1230
src/views/warehouse/warehouseRetentionRecord/warehouseRetentionDetails.vue

File diff suppressed because it is too large Load Diff

67
src/views/warehouse/warehouseRetentionRecord/warehouseRetentionRecord.vue

@ -90,7 +90,7 @@
:size="ElButtonS[0].size"
:icon="ElButtonS[0].icon"
@click="ViewEvent(props.row)"
>详情</el-button
>滞留明细</el-button
>
</div>
<span v-if="item.type == 6">{{
@ -148,6 +148,7 @@
<script setup>
import { ref, reactive, onMounted, computed } from 'vue';
import { useRouter} from 'vue-router';
import { $_warehouseRetentionRecordPage } from '@/api/warehouse/warehouseRetentionRecord.js';
import { ElMessage } from 'element-plus';
const SoInfoData = ref({}); //
@ -161,6 +162,7 @@ const disabled = ref(false); // 是否禁止使用页码功能
const total = ref(10); //
const loading = ref(false); //Load
const PopupDetails = ref(false); //
const router = useRouter(); //
const Tabs = ref([
//
{ label: '处理中', name: 0, icon: 'Monitor' },
@ -177,9 +179,9 @@ const menuData = ref([
label: '滞留车次号',
type: 4,
values: '',
width: '150',
width: '200',
checkarr: [],
fixed: false,
fixed: true,
search: true,
head: true,
},
@ -199,12 +201,56 @@ const menuData = ref([
label: '装车人名称',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'retentionCreateUserName',
label: '滞留操作人',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'createTime',
label: '滞留时间',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'retentionQuantity',
label: '滞留数量',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'retentionWarehouseName',
label: '仓库名称',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'retentionRemarks',
label: '备注',
@ -265,7 +311,7 @@ const menuData = ref([
label: '操作',
type: 3,
values: '',
width: '130',
width: '200',
checkarr: [],
fixed: 'right',
search: false,
@ -323,7 +369,18 @@ const searchReset = () => {
//
const ViewEvent = val => {
console.log(val);
PopupDetails.value = true;
router.push({
path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
query: {
id: val.id,
name: val.retentionCarNo + '-滞留明细',
},
});
// console.log(val);
// PopupDetails.value = true;
};
//
const handleClose = () => {

Loading…
Cancel
Save