Spaces:
Sleeping
Sleeping
Int valor
Browse files- ga4Analiticas.py +1 -1
ga4Analiticas.py
CHANGED
|
@@ -43,7 +43,7 @@ def send_ga4_purchase_event(session):
|
|
| 43 |
items.append({
|
| 44 |
"item_id": item_id, #1000i-1900mxn
|
| 45 |
"item_name": item_name, #1.8mxn
|
| 46 |
-
"price": valor,
|
| 47 |
"quantity": 1
|
| 48 |
})
|
| 49 |
|
|
|
|
| 43 |
items.append({
|
| 44 |
"item_id": item_id, #1000i-1900mxn
|
| 45 |
"item_name": item_name, #1.8mxn
|
| 46 |
+
"price": int(valor),
|
| 47 |
"quantity": 1
|
| 48 |
})
|
| 49 |
|