diff --git a/__manifest__.py b/__manifest__.py
index 43ef5a611e991742a4f14ea899782ea7023fcdfd..d964343a8f5dbb8a5bcb04b78b7bd8a84df9d50d 100644
--- a/__manifest__.py
+++ b/__manifest__.py
@@ -1,7 +1,7 @@
 {
     "name": "VRACOOP - POS API V2",
     "summary": "VRACOOP - POS API V2",
-    "version": "12.1.0.0",
+    "version": "12.1.1.0",
     "development_status": "Beta",
     "author": "Le Filament",
     "maintainers": ["remi-filament"],
diff --git a/models/pos_transaction.py b/models/pos_transaction.py
index 24d36e5c40890014129d951a1bb54411c49f1b00..2ee47bbc7d78be4a00c94dfecf22fd58d96749ee 100644
--- a/models/pos_transaction.py
+++ b/models/pos_transaction.py
@@ -55,7 +55,8 @@ class PosTransaction(models.Model):
                 "seller_name": seller_id.name.name,
                 "seller_code": seller_id.product_code,
                 "ean13_product": transaction.product_id.barcode,
-                "ean13_weight_product": transaction.ean13
+                "ean13_weight_product": transaction.ean13,
+                "tare": transaction.weight_tare
             }
             list_transaction.append(data_transaction)