diff --git a/src/org/openbravo/service/integration/magento/mappings/inbound/orders/OrderLineImportMapper.java b/src/org/openbravo/service/integration/magento/mappings/inbound/orders/OrderLineImportMapper.java
index db974c1..4e2154e 100644
--- a/src/org/openbravo/service/integration/magento/mappings/inbound/orders/OrderLineImportMapper.java
+++ b/src/org/openbravo/service/integration/magento/mappings/inbound/orders/OrderLineImportMapper.java
@@ -175,6 +175,12 @@ public class OrderLineImportMapper extends ImportJavaPropertyMappingHandler<JSON
     final BigDecimal taxCompensation = new BigDecimal(
         jsonObject.getString(OB_LINE_TAXCOMPENSATION));
 
+    if (jsonObject.has(OB_LINE_PRICE)) {
+      final BigDecimal price = new BigDecimal(jsonObject.getString(OB_LINE_PRICE));
+      jsonObject.put("grossListPrice", price);
+      jsonObject.put("baseGrossUnitPrice", price);
+    }
+
     jsonObject.put(OB_LINE_NETAMOUNT, netAmount.add(taxCompensation).subtract(discountAmount));
     jsonObject.put(OB_LINE_GROSSAMOUNT, grossAmount.subtract(discountAmount));
     jsonObject.put(OB_LINE_TAX,
