| | |
| | | //初始化表格 导入信息 |
| | | function set_InitGrid1() { |
| | | var columns = []; |
| | | columns.push({ type: 'checkbox', fixed: 'left' }); |
| | | columns.push({ type: 'checkbox', fixed: 'left', totalRowText: '合计' }); |
| | | columns.push({ field: '组织', title: '组织', width: 150 }); |
| | | columns.push({ field: '供应商', title: '供应商', width: 150 }); |
| | | columns.push({ field: '收料仓库', title: '收料仓库', width: 150 }); |
| | | columns.push({ field: '物料编码', title: '物料编码', width: 150 }); |
| | | columns.push({ field: '数量', title: '数量', width: 150 }); |
| | | columns.push({ field: '数量', title: '数量', width: 150, totalRow: true}); |
| | | columns.push({ field: '包装标识', title: '包装标识', width: 150 }); |
| | | columns.push({ field: '到货日期', title: '到货日期', width: 150 }); |
| | | columns.push({ field: '物流单号', title: '物流单号', width: 150 }); |
| | |
| | | , toolbar: '#toolbarDemo' |
| | | , height: 'full-190' |
| | | , page: true |
| | | , totalRow: true |
| | | , cellMinWidth: 90 |
| | | , limit: 50 |
| | | , limits: [50, 500, 5000, 20000] |