Files
maxcess-synergy-admin/src/views/mssPurchaseOrder/purchaseDetails.vue

187 lines
5.7 KiB
Vue
Raw Normal View History

2025-03-21 09:20:29 +08:00
<template>
<div class="system-user-container layout-padding">
<el-card class="layout-padding-auto" shadow="hover">
2025-03-27 23:36:30 +08:00
<avue-crud
ref="crudRef"
:data="state.data"
:option="state.option"
2025-04-01 23:48:13 +08:00
@selection-change="selectionChange"
@search-change="searchChange"
@search-reset="resetChange"
>
2025-03-21 09:20:29 +08:00
<template #menu-left>
2025-04-01 23:48:13 +08:00
<div style="display: flex;">
<div class="menu-left">
<span >已选中 <span style="color: #3edc95; font-size: 18px">{{ state.selectedData.length }}</span> 条数据</span >
</div>
<el-button style="margin-left: 16px" type="primary" @click="selectedDataShowFun" >生成送货单</el-button>
</div>
2025-03-21 09:20:29 +08:00
</template>
</avue-crud>
</el-card>
<selectedData :showes="state.selectedDataShow" :listData="state.selectedData" @generateDocuments="generateDocumentsFun"/>
2025-03-27 23:36:30 +08:00
<!-- <receipt :showes="state.receiptShow"/>-->
2025-03-21 09:20:29 +08:00
</div>
</template>
<script lang="ts" setup>
2025-03-24 16:46:34 +08:00
import {reactive, onMounted, nextTick, computed} from 'vue';
2025-03-21 09:20:29 +08:00
import { ArrowRight } from '@element-plus/icons-vue';
import selectedData from './selectedData.vue'
import receipt from './receipt.vue'
2025-03-24 16:46:34 +08:00
import { useI18n } from 'vue-i18n';
2025-03-27 23:36:30 +08:00
import {listApi} from "/@/api/list";
import { useRoute } from 'vue-router'
const route = useRoute()
2025-03-24 16:46:34 +08:00
const { locale, t } = useI18n();
2025-03-21 09:20:29 +08:00
// 定义变量内容
const state = reactive({
page: {
total: 1000,
currentPage: 1,
pageSize: 10,
},
option: {
tip: false,
selection: true,
index: true,
menu: false,
menuWidth: 150,
border: true,
delBtn: false,
editBtn: false,
align: 'center',
2025-03-24 16:46:34 +08:00
searchLabelWidth: 130,
2025-03-21 09:20:29 +08:00
searchMenuSpan: 6,
addBtn: false,
column: [
2025-04-01 23:48:13 +08:00
{ label: 'PO号', prop: 'fBillNo', width: 150},
{ label: computed(() => t('message.list.PurchaseDate')), prop: 'fDate', width: 150,type: 'datetime', searchSpan: 6,searchRange: true,},
{ label: '关闭状态', prop: 'hangzhuangtai', width: 150 },
{ label: '物料编码', prop: 'wuliaobinama', width: 150 },
{ label: '物料名称', prop: 'wuliaomingcheng', width: 150 },
{ label: '采购单位', prop: 'caigoudanwei', width: 150 },
{ label: '采购数量', prop: 'caigoushuliang', width: 150 },
{ label: '交货日期', prop: 'jioahuiriqi', width: 150 },
{ label: '业务状态', prop: 'yewuzhuangtai', width: 150},
{ label: '累计收料数量', prop: 'ljslsl', width: 150 },
{ label: '剩余收料数量', prop: 'syslsl', width: 150 },
{ label: '供应商承诺交期', prop: 'gyscnjq', width: 150 },
{ label: '供应商承诺最新交期', prop: 'gyscnzxjq', width: 150 },
// { label: computed(() => t('message.list.MaterialCode')), prop: 'materialCode', width: 200 },
// { label: computed(() => t('message.list.MaterialName')), prop: 'materialName', width: 200 },
// { label: computed(() => t('message.list.Specification')), prop: 'specificationModel', width: 200 },
// { label: computed(() => t('message.list.PurchaseUnit')), prop: 'FUnitId', width: 200 },
// { label: '采购数量', prop: 'qty', width: 200 },
// { label: '处理中数量', prop: 'processingQty', width: 200 },
// { label: '已发货数量', prop: 'sendedQty', width: 200 },
// { label: '未发货数量', prop: 'notSendQty', width: 200 },
// { label: '本次发货数量', prop: 'nowSendQty', width: 200 },
// { label: computed(() => t('message.list.UP')), prop: 'unitPrice', width: 200 },
// { label:'价税合计(含税金额', prop: 'amount1', width: 200 },
// { label: computed(() => t('message.list.TotalAmount')), prop: 'amount2', width: 200 },
// { label: computed(() => t('message.list.AccumulatedReceiptQTY')), prop: 'FReceiveQty', width: 200 },
// { label: computed(() => t('message.list.TaxAmount')), prop: 'taxAmount', width: 200 },
// {
// label: computed(() => t('message.list.CommittedDeliveryDate')),
// prop: 'chengNuoJiaoQi',
// width: 200,
// type: 'datetime',
// searchSpan: 12,
// searchRange: true,
// searchLabelWidth: 150,
// },
// {
// label: computed(() => t('message.list.LatestCommittedDeliveryDate')),
// prop: 'newChengNuoJiaoQi',
// width: 200,
// type: 'datetime',
// searchSpan: 12,
// searchRange: true,
// searchLabelWidth: 150,
// },
// { label: computed(() => t('message.list.Comments2')), prop: 'remark', width: 200 },
2025-03-21 09:20:29 +08:00
],
},
2025-03-27 23:36:30 +08:00
data: [],
2025-03-21 09:20:29 +08:00
selectedData:[],
selectedDataShow:false,
2025-03-27 23:36:30 +08:00
receiptShow:false,
topId:''
2025-03-21 09:20:29 +08:00
});
const selectionChange = (list:any) => {
nextTick( () => {
state.selectedData = JSON.parse(JSON.stringify(list))
})
2025-04-01 23:48:13 +08:00
}
const searchChange = (params:any, done:any) => {
done()
getList()
}
const resetChange = () => {
2025-03-21 09:20:29 +08:00
}
const generateDocumentsFun = () => {
2025-04-01 23:48:13 +08:00
state.selectedDataShow = false
getList()
2025-03-21 09:20:29 +08:00
}
const selectedDataShowFun = () => {
state.selectedDataShow = !state.selectedDataShow
}
// 页面加载时
onMounted(() => {
2025-03-27 23:36:30 +08:00
state.topId = route.query.topId as string
getList()
})
const getList = () => {
listApi().getPurchaseOrderItemList({
fid:state.topId
}).then((res:any) => {
if(res.resultCode === 0){
state.data = res.data
}
})
}
2025-03-21 09:20:29 +08:00
</script>
<style lang="scss" scoped>
.system-user-container {
:deep(.el-card__body) {
display: flex;
flex-direction: column;
flex: 1;
overflow: auto;
.el-table {
flex: 1;
}
}
}
:deep(.el-col) {
margin-bottom: 16px;
}
:deep(.avue-crud__header) {
display: flex;
flex-wrap: wrap;
}
.menu-left {
2025-04-01 23:48:13 +08:00
//width: 340px;
2025-03-21 09:20:29 +08:00
height: 40px;
background-color: rgba(64, 159, 255, 0.18);
border-radius: 8px;
border: 2px solid #d9ecff;
display: flex;
align-items: center;
padding: 0 16px;
justify-content: space-between;
cursor: pointer;
}
</style>