Compare commits
2 Commits
9c4a1f5e3d
...
daca9ec9f8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
daca9ec9f8 | ||
|
|
4871fe23a8 |
@ -65,7 +65,7 @@ public interface MaterialPlanBoomMapper extends BaseMapperX<MaterialPlanBoomDO>
|
||||
query.selectAll(MaterialPlanBoomDO.class)
|
||||
// .select("mat.id as matId","mat.name as matName","mat.code as matCode","mat.spec as matSpec","mat.unit as matUnit","mat.material_type as matType")
|
||||
// .select("b.material_name as matName","m.code as matCode","b.spec as matSpec","b.unit as matUnit","b.blueprint_no as blueprintNo")
|
||||
.select("b.material_name as matName","b.spec as matSpec","b.unit as matUnit","b.blueprint_no as blueprintNo")
|
||||
.select("b.spec as matSpec","b.unit as matUnit","b.blueprint_no as blueprintNo")
|
||||
|
||||
.select("bc.`name` as compositionName","b.`composition_id` as compositionId")
|
||||
.select("ma.brief as customerBriefName,ma.project_name as projectName,ma.name as projectSubName,ma.project_id as projectId")
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<el-card class="hl-card">
|
||||
<template #header>
|
||||
<span>标准件物料需求计划</span>
|
||||
<span>采购订单生成</span>
|
||||
</template>
|
||||
<ContentWrap class="borderxx">
|
||||
<!-- 搜索工作栏 -->
|
||||
@ -205,7 +205,9 @@ const exportLoading = ref(false) // 导出的加载中
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
multipleTable.value.clearSelection();
|
||||
const data = await purchaseOrderMakeDetailApi.page(queryParams)
|
||||
|
||||
list.value = data.list
|
||||
for (const row of list.value ) {
|
||||
// 如果boomCode不为空,则调用remoteMethod进行查询
|
||||
@ -320,6 +322,7 @@ const serachLog = (row) => {
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
|
||||
}
|
||||
const opearteForm = async(type) =>{
|
||||
loading.value = true;
|
||||
|
||||
@ -220,6 +220,7 @@ const exportLoading = ref(false) // 导出的加载中
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
multipleTable.value.clearSelection();
|
||||
const data = await materialPlanBoomApi.getStandardBuyPage(queryParams)
|
||||
list.value = data.list
|
||||
total.value = data.total
|
||||
|
||||
Loading…
Reference in New Issue
Block a user