import {BasicColumn} from '/@/components/Table';
import {FormSchema} from '/@/components/Table';
import { rules} from '/@/utils/helper/validator';
import { render } from '/@/utils/common/renderUtils';
import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
   {
    title: '仓库(warehouse)',
    align:"center",
    dataIndex: 'warehouseName'
   },   
   {
    title: '货位(goods allocation)',
    align:"center",
    dataIndex: 'goodsAllocation',
   },
  
   {
    title: '项目(project)',
    align:"center",
    dataIndex: 'projectName'
   },
   {
    title: '供应商(supplier)',
    align:"center",
    dataIndex: 'supplierName'
   },
   {
    title: '客户(customerName)',
    align:"center",
    dataIndex: 'customerName'
   },
   {
    title: '产品分类(production class)',
    align:"center",
    dataIndex: 'productionClass'
   },
   {
    title: '机型(model)',
    align:"center",
    dataIndex: 'model'
   },
   {
    title: '产品编码(product code)',
    align:"center",
    dataIndex: 'productCode'
   },
   {
    title: '产品英文名(english name)',
    align:"center",
    dataIndex: 'englishName'
   },
   {
    title: '产品中文名(chinese name)',
    align:"center",
    dataIndex: 'chineseName'
   },
   {
    title: '型号(model)',
    align:"center",
    dataIndex: 'model'
   },
   {
    title: '厂家(maker)',
    align:"center",
    dataIndex: 'maker'
   },
   {
    title: '质量等级(quality grade)',
    align:"center",
    dataIndex: 'qualityGrade'
   },
   {
    title: '批号(batch code)',
    align:"center",
    dataIndex: 'batchCode',
    width:'250'
   },
   {
    title: '数量(quantity)',
    align:"center",
    dataIndex: 'quantity',
    width:'250'
   },
];