- fix product price auto update getting from calback in metro
- revert logs in ppob callback metro
This commit is contained in:
		| @@ -1231,7 +1231,7 @@ export class TransactionService { | ||||
|       if (callback['message'].includes('METRO')) { | ||||
|         if (callback['price'] != dataTransaction.product_price.price) { | ||||
|           console.log("mskupdt", "msk") | ||||
|           dataTransaction.product_price.price = callback['price'].toInt() | ||||
|           dataTransaction.product_price.price = parseInt(callback['price']) | ||||
|         } | ||||
|       } | ||||
|     } | ||||
| @@ -1330,7 +1330,7 @@ export class TransactionService { | ||||
|     if(callback['message']) { | ||||
|       if (callback['message'].includes('METRO')) { | ||||
|         if (callback['price'] != dataTransaction.product_price.price) { | ||||
|           dataTransaction.product_price.price = callback['price'].toInt() | ||||
|           dataTransaction.product_price.price = parseInt(callback['price']) | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user