fixing: transaction create
This commit is contained in:
		@@ -23,6 +23,7 @@ export class ProductHistoryPriceService {
 | 
			
		||||
    const result = await this.productHistoryPriceRepository
 | 
			
		||||
      .createQueryBuilder('product_history_price')
 | 
			
		||||
      .leftJoin('product_history_price.product', 'product')
 | 
			
		||||
      .leftJoinAndSelect('product_history_price.partner', 'partner')
 | 
			
		||||
      .where({ product: productId })
 | 
			
		||||
      .andWhere('product_history_price.endDate IS NULL')
 | 
			
		||||
      .getMany();
 | 
			
		||||
 
 | 
			
		||||
@@ -489,17 +489,17 @@ export class TransactionService {
 | 
			
		||||
      })
 | 
			
		||||
      .join('');
 | 
			
		||||
 | 
			
		||||
    const hitSupplier = await doTransaction(
 | 
			
		||||
      orderTransactionDto.productCode,
 | 
			
		||||
      orderTransactionDto.destination,
 | 
			
		||||
      trxId,
 | 
			
		||||
    );
 | 
			
		||||
    // const hitSupplier = await doTransaction(
 | 
			
		||||
    //   orderTransactionDto.productCode,
 | 
			
		||||
    //   orderTransactionDto.destination,
 | 
			
		||||
    //   trxId,
 | 
			
		||||
    // );
 | 
			
		||||
 | 
			
		||||
    // const hitSupplier = {
 | 
			
		||||
    //   harga: product_price.price,
 | 
			
		||||
    //   success: true,
 | 
			
		||||
    //   msg: 'Berhasil',
 | 
			
		||||
    // };
 | 
			
		||||
    const hitSupplier = {
 | 
			
		||||
      harga: 2000,
 | 
			
		||||
      success: true,
 | 
			
		||||
      msg: 'Berhasil',
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    this.logger.log({
 | 
			
		||||
      responseAPISupplier: hitSupplier,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user