#
vincentlu
昨天 bfd367392efafcfe06490cf729207ee0850f4328
#
3个文件已修改
29 ■■■■ 已修改文件
zy-acs-flow/src/i18n/en.js 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/i18n/zh.js 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/page/sta/StaList.jsx 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/i18n/en.js
@@ -289,12 +289,12 @@
                staType: "station type",
                code: "code",
                offset: "offset",
                height: "height",
                depth: "depth",
                height: "height(mm)",
                depth: "depth(mm)",
                angle: 'angle',
                actDir: 'actuator direction',
                inboundWait: 'inbound wait(ms)',
                outboundWait: 'outbound wait(ms)',
                inboundWait: 'in wait(ms)',
                outboundWait: 'out wait(ms)',
                autoing: "autoing",
                loading: "loading",
                inEnable: "in enable",
zy-acs-flow/src/i18n/zh.js
@@ -289,12 +289,12 @@
                staType: "站点类型",
                code: "地面码",
                offset: "偏移量",
                height: "作业高度",
                depth: "作业深度",
                angle: '车体角度',
                height: "作业高度(mm)",
                depth: "作业深度(mm)",
                angle: '车体角度(°)',
                actDir: '货叉方向',
                inboundWait: '入库等(毫秒)',
                outboundWait: '出库等(毫秒)',
                inboundWait: '入库等(ms)',
                outboundWait: '出库等(ms)',
                autoing: "自动",
                loading: "载货",
                inEnable: "可入",
zy-acs-flow/src/page/sta/StaList.jsx
@@ -136,7 +136,7 @@
                    expand={() => <StaPanel />}
                    expandSingle={true}
                    rowSx={rowSx(drawerVal || null)}
                    omit={['id', 'uuid', 'name', 'offset', 'zpallet', 'depth'
                    omit={['id', 'uuid', 'name', 'offset', 'zpallet', 'depth', 'capacity'
                        , 'updateTime', 'updateBy', 'createTime', 'createBy', 'memo']}
                >
                    <NumberField source="id" />
@@ -160,15 +160,16 @@
                    <NumberField source="rsvInCnt" label="table.field.sta.rsvInCnt" />
                    <NumberField source="rsvOutCnt" label="table.field.sta.rsvOutCnt" />
                    <NumberField source="offset" label="table.field.sta.offset" />
                    <NumberField source="height" label="table.field.sta.height" />
                    <NumberField source="height" label="table.field.sta.height" sortable={false} />
                    <NumberField source="depth" label="table.field.sta.depth" />
                    <NumberField source="angle" label="table.field.sta.angle" />
                    <NumberField source="angle" label="table.field.sta.angle" sortable={false} />
                    <FunctionField
                        label="table.field.sta.actDir"
                        render={(record) => getCompDirectLabel(translate, record?.actDir)}
                        sortable={false}
                    />
                    <NumberField source="inboundWait" label="table.field.sta.inboundWait" />
                    <NumberField source="outboundWait" label="table.field.sta.outboundWait" />
                    <NumberField source="inboundWait" label="table.field.sta.inboundWait" sortable={false} />
                    <NumberField source="outboundWait" label="table.field.sta.outboundWait" sortable={false} />
                    {/* <TextField source="autoing" label="table.field.sta.autoing" />
                    <TextField source="loading" label="table.field.sta.loading" />
                    <TextField source="inEnable" label="table.field.sta.inEnable" />