no message
parent
c30427dcdc
commit
30bcc70a73
|
|
@ -39,7 +39,13 @@ export const columns: BasicColumn[] = [
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '目标库位',
|
title: '起点',
|
||||||
|
align: "center",
|
||||||
|
width: '120px',
|
||||||
|
dataIndex: 'startCode'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '终点',
|
||||||
align: "center",
|
align: "center",
|
||||||
width: '120px',
|
width: '120px',
|
||||||
dataIndex: 'endCode'
|
dataIndex: 'endCode'
|
||||||
|
|
|
||||||
|
|
@ -25,17 +25,17 @@ export const columns: BasicColumn[] = [
|
||||||
{
|
{
|
||||||
title: '排',
|
title: '排',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'rows',
|
dataIndex: 'rowNum',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '列',
|
title: '列',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'cols',
|
dataIndex: 'colNum',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '层',
|
title: '层',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'layers',
|
dataIndex: 'layerNum',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '是否启用',
|
title: '是否启用',
|
||||||
|
|
|
||||||
|
|
@ -33,18 +33,18 @@
|
||||||
</a-col>
|
</a-col>
|
||||||
|
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-form-item label="排" v-bind="validateInfos.rows" id="PointForm-rows" name="rows">
|
<a-form-item label="排" v-bind="validateInfos.rowNum" id="PointForm-rowNum" name="rowNum">
|
||||||
<a-input v-model:value="formData.rows" placeholder="请输入排" allow-clear></a-input>
|
<a-input v-model:value="formData.rowNum" placeholder="请输入排" allow-clear></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-form-item label="列" v-bind="validateInfos.cols" id="PointForm-cols" name="cols">
|
<a-form-item label="列" v-bind="validateInfos.colNum" id="PointForm-colNum" name="colNum">
|
||||||
<a-input v-model:value="formData.cols" placeholder="请输入列" allow-clear></a-input>
|
<a-input v-model:value="formData.colNum" placeholder="请输入列" allow-clear></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
<a-form-item label="层" v-bind="validateInfos.layers" id="PointForm-layers" name="layers">
|
<a-form-item label="层" v-bind="validateInfos.layerNum" id="PointForm-layerNum" name="layerNum">
|
||||||
<a-input v-model:value="formData.layers" placeholder="请输入层" allow-clear></a-input>
|
<a-input v-model:value="formData.layerNum" placeholder="请输入层" allow-clear></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
|
|
@ -90,9 +90,9 @@
|
||||||
areaId: '',
|
areaId: '',
|
||||||
pointCode: '',
|
pointCode: '',
|
||||||
status: 0,
|
status: 0,
|
||||||
rows: '00',
|
rowNum: '00',
|
||||||
cols: '00',
|
colNum: '00',
|
||||||
layers: '00',
|
layerNum: '00',
|
||||||
description: '',
|
description: '',
|
||||||
delFlag: 0,
|
delFlag: 0,
|
||||||
izActive: 1,
|
izActive: 1,
|
||||||
|
|
@ -106,9 +106,9 @@
|
||||||
const validatorRules = reactive({
|
const validatorRules = reactive({
|
||||||
areaId: [{ required: true, message: '请选择库区!' }],
|
areaId: [{ required: true, message: '请选择库区!' }],
|
||||||
pointCode: [{ required: true, message: '请输入库位编码!' }],
|
pointCode: [{ required: true, message: '请输入库位编码!' }],
|
||||||
row: [{ required: true, message: '请输入排!' }],
|
rowNum: [{ required: true, message: '请输入排!' }],
|
||||||
col: [{ required: true, message: '请输入列!' }],
|
colNum: [{ required: true, message: '请输入列!' }],
|
||||||
layer: [{ required: true, message: '请输入层!' }],
|
layerNum: [{ required: true, message: '请输入层!' }],
|
||||||
status: [{ required: true, message: '请选择状态!' }],
|
status: [{ required: true, message: '请选择状态!' }],
|
||||||
});
|
});
|
||||||
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,11 @@ export const columns: BasicColumn[] = [
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'whCode',
|
dataIndex: 'whCode',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '回传报文',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'resMessage',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '订单日期',
|
title: '订单日期',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|
@ -120,13 +125,13 @@ export const asnDetailColumns: JVxeColumn[] = [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '库位',
|
title: '起点',
|
||||||
key: 'pointId',
|
key: 'fromPointId',
|
||||||
type: JVxeTypes.selectSearch,
|
type: JVxeTypes.selectSearch,
|
||||||
width: 150,
|
width: 150,
|
||||||
async: true, // 异步搜索,默认为 true
|
async: true, // 异步搜索,默认为 true
|
||||||
//查询状态为可用、启用、未删除的库位
|
//查询状态为可用、启用、未删除的库位
|
||||||
dictCode: 'base_point where area_id = 1986328561044119554 and iz_active=1 and del_flag=0,point_code,id',
|
dictCode: 'base_point where area_id = 1983454124619755521 and iz_active=1 and del_flag=0,point_code,id',
|
||||||
tipsContent: '请搜索库位',
|
tipsContent: '请搜索库位',
|
||||||
validateRules: [
|
validateRules: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ export const columns: BasicColumn[] = [
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'status_dictText',
|
dataIndex: 'status_dictText',
|
||||||
customRender: ({ text }) => {
|
customRender: ({ text }) => {
|
||||||
//入库状态:1.已创建;2.部分分配;3.已分配;4.拣货中;5.拣货完成;6.已关闭;7.已取消。
|
//出库状态:1.已创建;2.部分分配;3.已分配;4.拣货中;5.拣货完成;6.已关闭;7.已取消。
|
||||||
const statusColorMap = {
|
const statusColorMap = {
|
||||||
已创建: 'orange',
|
已创建: 'orange',
|
||||||
部分分配: 'cyan',
|
部分分配: 'cyan',
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<span style="display: flex">
|
<span style="display: flex">
|
||||||
{{title}}
|
{{title}}
|
||||||
<a-tooltip title="AI应用文档">
|
<a-tooltip title="AI应用文档">
|
||||||
<a style="color: unset" href="https://help.jeecg.com/aigc/guide/app" target="_blank">
|
<a style="color: unset" href="https://help.cpte.com/aigc/guide/app" target="_blank">
|
||||||
<Icon style="position:relative;left:2px;top:1px" icon="ant-design:question-circle-outlined"></Icon>
|
<Icon style="position:relative;left:2px;top:1px" icon="ant-design:question-circle-outlined"></Icon>
|
||||||
</a>
|
</a>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue