AnhLedger commited on
Commit
2865a3f
·
1 Parent(s): 6b95a9f

add log ipn

Browse files
backend/src/payment/payment.controller.ts CHANGED
@@ -30,8 +30,10 @@ export class PaymentController {
30
 
31
  @Public()
32
  @Get('vnpay_ipn')
33
- vnpayIpn(@Req() req: Request, @Body() body: any){
34
  const reqQuery = req.query;
35
- return this.paymentService.vnpayIpn(reqQuery)
 
 
36
  }
37
  }
 
30
 
31
  @Public()
32
  @Get('vnpay_ipn')
33
+ async vnpayIpn(@Req() req: Request, @Body() body: any){
34
  const reqQuery = req.query;
35
+ const res = await this.paymentService.vnpayIpn(reqQuery)
36
+ console.log(res);
37
+ return res;
38
  }
39
  }
backend/src/payment/payment.service.ts CHANGED
@@ -86,7 +86,6 @@ export class PaymentService {
86
  //thanh cong
87
  //paymentStatus = '1'
88
  // Ở đây cập nhật trạng thái giao dịch thanh toán thành công vào CSDL của bạn
89
- console.log("Thành công")
90
  return {
91
  statusCode: HttpStatus.OK,
92
  message: 'Thành công!',
@@ -97,7 +96,6 @@ export class PaymentService {
97
  //that bai
98
  //paymentStatus = '2'
99
  // Ở đây cập nhật trạng thái giao dịch thanh toán thất bại vào CSDL của bạn
100
- console.log("thất bại");
101
  return {
102
  statusCode: HttpStatus.OK,
103
  message: 'Thất bại',
 
86
  //thanh cong
87
  //paymentStatus = '1'
88
  // Ở đây cập nhật trạng thái giao dịch thanh toán thành công vào CSDL của bạn
 
89
  return {
90
  statusCode: HttpStatus.OK,
91
  message: 'Thành công!',
 
96
  //that bai
97
  //paymentStatus = '2'
98
  // Ở đây cập nhật trạng thái giao dịch thanh toán thất bại vào CSDL của bạn
 
99
  return {
100
  statusCode: HttpStatus.OK,
101
  message: 'Thất bại',