Browse Source

fix: 生产订单号名称修改

xyh 2 years ago
parent
commit
febbf5a2b3

+ 1 - 1
packages/app/src/pages/product-draw/filter/index.tsx

@@ -20,7 +20,7 @@ const Filter: FC = function () {
       <FilterFieldWrapper onSearch={onSearch}>
         <FilterField
           name='semiDrawCode'
-          label='生产单号'
+          label='生产单号'
           value={code}
           onChange={onChange('code')}
         />

+ 1 - 1
packages/app/src/pages/product-report/filter/state.ts

@@ -22,7 +22,7 @@ export const sourceMap: FilterGroupMap<typeof contextState> = new Map([
 ]);
 
 export const fixedMap: MapValue<typeof contextState>[] = [
-  {label: '生产单号', value: 'productionCode', type: 'field'},
+  {label: '生产单号', value: 'productionCode', type: 'field'},
   {label: '报工单编号', value: 'noticeCode', type: 'field'},
   {label: '物料名称', value: 'materialName', type: 'field'},
   {label: '物料编号', value: 'wllbCode', type: 'field'},

+ 1 - 1
packages/app/src/pages/product-report/table/hooks.tsx

@@ -13,7 +13,7 @@ import {ColumnsType} from 'antd/es/table';
 
 const columns: ColumnsType<NoticeListData> = [
   {
-    title: '生产单号',
+    title: '生产单号',
     dataIndex: 'productionCode',
 
     width: MIDDLE_TABLE_WIDTH,

+ 1 - 1
packages/app/src/pages/semi-report/filter/state.ts

@@ -22,7 +22,7 @@ export const sourceMap: FilterGroupMap<typeof contextState> = new Map([
 ]);
 
 export const fixedMap: MapValue<typeof contextState>[] = [
-  {label: '生产单号', value: 'productionCode', type: 'field'},
+  {label: '生产单号', value: 'productionCode', type: 'field'},
   {label: '报工单编号', value: 'noticeCode', type: 'field'},
   {label: '物料名称', value: 'materialName', type: 'field'},
   {label: '物料编号', value: 'wllbCode', type: 'field'},

+ 1 - 1
packages/app/src/pages/semi-report/table/hooks.tsx

@@ -14,7 +14,7 @@ import {useSupertube, useTableDeleteEvent, useTableModalEvent} from '@hooks';
 
 const tableColumns: ColumnsType<NoticeListData> = [
   {
-    title: '生产单号',
+    title: '生产单号',
     dataIndex: 'productionCode',
 
     width: MIDDLE_TABLE_WIDTH,