| 
					
				 | 
			
			
				@@ -218,7 +218,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             this.colspanNums = this.colspanNums + 3 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             arr = arr.concat([ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { title: '待下推数', field: 'unpushedQty', width: 80,key: "o", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                { title: '已下推数', field: 'pushedQty', width: 80,key: "p", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { title: '已下推数', field: 'epushedQty', width: 80,key: "p", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { title: '已取消数', field: 'cancelQty', width: 80,key: "q", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           return arr 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -347,6 +347,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               item.productName = productName || '--' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               item.productOrigCode = productOrigCode == ' ' ? '--' : productOrigCode 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               item.productOrigUnit = productOrigUnit || '--' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              item.epushedQty = Number(item.pushedQty) - Number(item.pushQty) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               if (item.unpushedQty && (Number(item.stockQty) < Number(item.unpushedQty))) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                   str += item.productCode + '、' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               } 
			 |