| 
						
						
							
								
							
						
						
					 | 
					@ -39,17 +39,17 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    const orders: CreateOrderDto[] = []; | 
					 | 
					 | 
					    const orders: CreateOrderDto[] = []; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    for (const item of content) { | 
					 | 
					 | 
					    for (const [index, item] of content.entries()) { | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					      orders.push({ | 
					 | 
					 | 
					      orders.push({ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					        accountId: defaultAccountId, | 
					 | 
					 | 
					        accountId: defaultAccountId, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					        currency: this.parseCurrency(item), | 
					 | 
					 | 
					        currency: this.parseCurrency({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					        dataSource: primaryDataSource, | 
					 | 
					 | 
					        dataSource: primaryDataSource, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					        date: this.parseDate(item), | 
					 | 
					 | 
					        date: this.parseDate({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        fee: this.parseFee(item), | 
					 | 
					 | 
					        fee: this.parseFee({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        quantity: this.parseQuantity(item), | 
					 | 
					 | 
					        quantity: this.parseQuantity({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        symbol: this.parseSymbol(item), | 
					 | 
					 | 
					        symbol: this.parseSymbol({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        type: this.parseType(item), | 
					 | 
					 | 
					        type: this.parseType({ content, index, item }), | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        unitPrice: this.parseUnitPrice(item) | 
					 | 
					 | 
					        unitPrice: this.parseUnitPrice({ content, index, item }) | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					      }); | 
					 | 
					 | 
					      }); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					@ -90,8 +90,16 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    }, {}); | 
					 | 
					 | 
					    }, {}); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseCurrency(aItem: any) { | 
					 | 
					 | 
					  private parseCurrency({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.CURRENCY_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.CURRENCY_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if (item[key]) { | 
					 | 
					 | 
					      if (item[key]) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -99,11 +107,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse currency'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.currency is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseDate(aItem: any) { | 
					 | 
					 | 
					  private parseDate({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    let date: string; | 
					 | 
					 | 
					    let date: string; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.DATE_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.DATE_KEYS) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -122,11 +138,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse date'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.date is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseFee(aItem: any) { | 
					 | 
					 | 
					  private parseFee({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.FEE_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.FEE_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if ((item[key] || item[key] === 0) && isNumber(item[key])) { | 
					 | 
					 | 
					      if ((item[key] || item[key] === 0) && isNumber(item[key])) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -134,11 +158,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse fee'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.fee is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseQuantity(aItem: any) { | 
					 | 
					 | 
					  private parseQuantity({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.QUANTITY_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.QUANTITY_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if (item[key] && isNumber(item[key])) { | 
					 | 
					 | 
					      if (item[key] && isNumber(item[key])) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -146,11 +178,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse quantity'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.quantity is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseSymbol(aItem: any) { | 
					 | 
					 | 
					  private parseSymbol({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.SYMBOL_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.SYMBOL_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if (item[key]) { | 
					 | 
					 | 
					      if (item[key]) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -158,11 +198,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse symbol'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.symbol is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseType(aItem: any) { | 
					 | 
					 | 
					  private parseType({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.TYPE_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.TYPE_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if (item[key]) { | 
					 | 
					 | 
					      if (item[key]) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -174,11 +222,19 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse type'); | 
					 | 
					 | 
					    throw { message: `orders.${index}.type is not valid`, orders: content }; | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  private parseUnitPrice(aItem: any) { | 
					 | 
					 | 
					  private parseUnitPrice({ | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					    const item = this.lowercaseKeys(aItem); | 
					 | 
					 | 
					    content, | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }: { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    content: any[]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    index: number; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item: any; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  }) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    item = this.lowercaseKeys(item); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    for (const key of ImportTransactionsService.UNIT_PRICE_KEYS) { | 
					 | 
					 | 
					    for (const key of ImportTransactionsService.UNIT_PRICE_KEYS) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      if (item[key] && isNumber(item[key])) { | 
					 | 
					 | 
					      if (item[key] && isNumber(item[key])) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
					@ -186,7 +242,10 @@ export class ImportTransactionsService { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    throw new Error('Could not parse unit price (unitPrice)'); | 
					 | 
					 | 
					    throw { | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      message: `orders.${index}.unitPrice is not valid`, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      orders: content | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    }; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  private postImport(aImportData: { orders: CreateOrderDto[] }) { | 
					 | 
					 | 
					  private postImport(aImportData: { orders: CreateOrderDto[] }) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  |