派工添加NC下发

This commit is contained in:
shaoleiliu-netizen123 2026-08-06 11:47:24 +08:00
parent 65b3d20420
commit 8f9bf2bdf2
4 changed files with 200 additions and 177 deletions

View File

@ -101,3 +101,11 @@ export function exportNccode(params:any) {
params
})
}
//加载全部NC代码
export function loadAllNcCode() {
return request({
url: `biz/ncCode/loadAllNcCode`,
method: 'get'
})
}

View File

@ -35,8 +35,12 @@
value: '2'
},
{
label: '其他异常',
label: '设备异常',
value: '3'
},
{
label: '其他异常',
value: '4'
}
]
@ -170,16 +174,11 @@
<n-form inline :model="searchForm" label-placement="left">
<n-grid :x-gap="8" :cols="4">
<n-gi>
<n-form-item label="异常编号">
<n-input v-model:value="searchForm.abnormalCode" placeholder="请输入异常编号" clearable style="width: 200px"/>
</n-form-item>
</n-gi>
<n-gi>
<n-form-item label="操作人员">
<n-form-item label="报警异常">
<n-select
v-model:value="searchForm.abnormalType"
:options="abnormalTypes"
placeholder="请选择异常类型"
placeholder="请选择报警异常"
clearable
style="width: 200px"
/>

View File

@ -742,7 +742,7 @@ const dispatchLoading = ref(false)
const dispatchformRef = ref()
const dispatchform = reactive<any>({
id: '', name: '', beginTime: '', endTime: '', quantity: '', sectionId: null as number | null, workshopId: null as number | null,
list: [{ sectionId:'',deviceId:'', quantity: '' }],
list: [{ sectionId:'',deviceId:'', quantity: '', ncId:'' }],
})
const dispatchrules = {}
@ -1267,11 +1267,11 @@ function disphand(process: ProcessPlanItemVO, order?: OrderProcessPlanVO) {
dispatchform.sort = entity.sort
dispatchform.sectionId = entity.sectionId ?? process.sectionId ?? null
dispatchform.workshopId = entity.workshopId ?? process.workshopId ?? order?.workshopId ?? null
dispatchform.list = [{ sectionId: '', deviceId: '', quantity: remainQty || '' }]
dispatchform.list = [{ sectionId: '', deviceId: '', quantity: remainQty || '',ncId:'' }]
}
function addpgnum() {
dispatchform.list.push({ sectionId: '', deviceId: '', quantity: '' })
dispatchform.list.push({ sectionId: '', deviceId: '', quantity: '',ncId:'' })
}
function deletenum(index: number) {

View File

@ -1,195 +1,211 @@
<template>
<div>
<n-grid>
<n-gi :span="10">
<n-form-item
label="指派工段"
:path="`${listname}[${index}].sectionId`"
>
<n-select
v-model:value="obj.sectionId"
filterable
placeholder="请选择工段"
:options="sectionList"
:loading="loadingRef"
disabled
remote
:clear-filter-after-select="false"
/>
</n-form-item>
</n-gi>
<n-gi :span="10">
<n-form-item
label="指派工位"
:path="`${listname}[${index}].deviceId`"
:rule="{
<div>
<n-grid>
<n-gi :span="10">
<n-form-item
label="指派工段"
:path="`${listname}[${index}].sectionId`"
>
<n-select
v-model:value="obj.sectionId"
filterable
placeholder="请选择工段"
:options="sectionList"
:loading="loadingRef"
disabled
remote
:clear-filter-after-select="false"
/>
</n-form-item>
</n-gi>
<n-gi :span="10">
<n-form-item
label="指派工位"
:path="`${listname}[${index}].deviceId`"
:rule="{
required:true,
message:`请选择工位`,
trigger: 'blur'
}"
>
<n-select
v-model:value="obj.deviceId"
filterable
placeholder="请选择工位"
:options="deviceList"
:loading="loadingRef"
clearable
remote
:clear-filter-after-select="false"
/>
</n-form-item>
</n-gi>
</n-grid>
<n-grid>
<n-gi :span="10">
<n-form-item
label="数量"
:path="`${listname}[${index}].quantity`"
:rule="{
>
<n-select
v-model:value="obj.deviceId"
filterable
placeholder="请选择工位"
:options="deviceList"
:loading="loadingRef"
clearable
remote
:clear-filter-after-select="false"
/>
</n-form-item>
</n-gi>
</n-grid>
<n-grid>
<n-gi :span="10">
<n-form-item
label="数量"
:path="`${listname}[${index}].quantity`"
:rule="{
required: true,
message: `请输入数量`,
trigger: 'blur',
}"
>
<n-input v-model:value="obj.quantity" />
</n-form-item>
</n-gi>
<n-gi :span="4" style="padding-left:10px;">
<n-icon
v-if="index == 0"
size="25"
style="padding-top: 5px;cursor: pointer;" color="#1060c9"
@click="addpgnum"
>
<AddOutline />
</n-icon>
>
<n-input v-model:value="obj.quantity"/>
</n-form-item>
</n-gi>
<n-gi :span="10">
<n-form-item
label="NC下发"
:path="`${listname}[${index}].ncId`"
>
<n-select
v-model:value="obj.ncId"
filterable
placeholder="请选择下发NC"
:options="ncList"
clearable
remote
:clear-filter-after-select="false"
/>
</n-form-item>
</n-gi>
<n-gi :span="4" style="padding-left:10px;">
<n-icon
v-if="index == 0"
size="25"
style="padding-top: 5px;cursor: pointer;" color="#1060c9"
@click="addpgnum"
>
<AddOutline/>
</n-icon>
<n-icon
v-else
size="18"
style="padding:7px 0 0 2px;cursor: pointer;" color="#d03050"
@click="deletenum(index)"
>
<TrashOutline />
</n-icon>
</n-gi>
<n-icon
v-else
size="18"
style="padding:7px 0 0 2px;cursor: pointer;" color="#d03050"
@click="deletenum(index)"
>
<TrashOutline/>
</n-icon>
</n-gi>
</n-grid>
</div>
</div>
</template>
<script setup lang="ts">
import { ref,reactive } from 'vue'
import { userApi } from '@/api/system'
import {sectionApi, type Section} from '@/api/section'
import {
AddOutline,
TrashOutline,
} from '@vicons/ionicons5'
import {ref, reactive} from 'vue'
import {userApi} from '@/api/system'
import {sectionApi, type Section} from '@/api/section'
import {
AddOutline,
TrashOutline,
} from '@vicons/ionicons5'
import {loadAllNcCode} from '@/api/nccode.ts'
const props = withDefaults(defineProps<{
listname:any
obj:any,
index:any
sectionId?: number | string | null
workshopId?: number | string | null
}>(), {
obj:{}
})
const emit = defineEmits<{
addhand:[],
delehand:[index:any],
update: [index:any,obj:any]
}>()
const props = withDefaults(defineProps<{
listname: any
obj: any,
index: any
sectionId?: number | string | null
workshopId?: number | string | null
}>(), {
obj: {}
})
const emit = defineEmits<{
addhand: [],
delehand: [index: any],
update: [index: any, obj: any]
}>()
// function updatehand() {
// emit('update')
// }
// function updatehand() {
// emit('update')
// }
function addpgnum() {
emit('addhand')
}
function deletenum(index:any){
emit('delehand',index)
}
function addpgnum() {
emit('addhand')
}
let sectionList = reactive<{label:string,value:any}[]>([])
let yglist = ref<any>([])
function deletenum(index: any) {
emit('delehand', index)
}
let loadingRef = ref(false)
let sectionList = reactive<{ label: string, value: any }[]>([])
let yglist = ref<any>([])
let deviceList = ref<any>([])
let loadingRef = ref(false)
function slehand(v?:any) {
loadingRef.value = true
yglist.value.splice(0)
// dispatchform.userlist = [{
// id:'',
// num:''
// }]
userApi.page({
page: 1,
pageSize: 100,
username: v,
}).then((rps:any) =>{
if(rps.list && rps.list.length > 0){
yglist.value = rps.list.map((n:any) => {
return {
label:n.username,
value:n.id+''
}
})
}
console.log(yglist.value,'12')
loadingRef.value = false
}).catch(() => {
loadingRef.value = false
})
let deviceList = ref<any>([])
let ncList = ref<any>([])
function slehand(v?: any) {
loadingRef.value = true
yglist.value.splice(0)
// dispatchform.userlist = [{
// id:'',
// num:''
// }]
userApi.page({
page: 1,
pageSize: 100,
username: v,
}).then((rps: any) => {
if (rps.list && rps.list.length > 0) {
yglist.value = rps.list.map((n: any) => {
return {
label: n.username,
value: n.id + ''
}
})
}
console.log(yglist.value, '12')
loadingRef.value = false
}).catch(() => {
loadingRef.value = false
})
}
// sectionId
async function loadSection() {
if (props.sectionId == null || props.sectionId === '') return
const res = await sectionApi.list({sectionId: props.sectionId})
const mesSection = res?.MesSection;
const mesDevice = res?.MesDevice || []
if (!mesSection) return
// sectionId
async function loadSection() {
if (props.sectionId == null || props.sectionId === '') return
const res = await sectionApi.list({sectionId: props.sectionId})
const mesSection = res?.MesSection;
const mesDevice = res?.MesDevice || []
if (!mesSection) return
sectionList.push({
label:mesSection.deptName,
value:mesSection.id
})
props.obj.sectionId = mesSection.id
sectionList.push({
label: mesSection.deptName,
value: mesSection.id
})
props.obj.sectionId = mesSection.id
deviceList.value = mesDevice.map((n:any)=>{
return {
label:n.deviceName,
value:n.id+''
}
})
}
deviceList.value = mesDevice.map((n: any) => {
return {
label: n.deviceName,
value: n.id + ''
}
})
}
// function searchSection(sectionId?:number){
// if(!sectionId) return
// props.obj.deviceId = ''
// deviceList.value = []
// deviceApi.list(sectionId).then(res=>{
// deviceList.value = res.map((n:any)=>{
// return {
// label:n.name,
// value:n.id+''
// }
// })
// })
// }
//
async function loadNc() {
const res = await loadAllNcCode()
ncList.value = res.map((n: any) => {
return {
label: n.ncName,
value: n.id
}
})
console.log(ncList.value)
}
loadSection()
slehand()
loadNc()
loadSection()
slehand()
// handleDevice()
</script>