diff U3 E:/patch/a/mappers/commerce_price.inc E:/patch/b/mappers/commerce_price.inc
--- mappers/commerce_price.inc	Fri Aug 10 09:51:30 2012
+++ mappers/commerce_price.inc	Wed Aug 22 18:17:42 2012
@@ -26,6 +26,12 @@
         'description' => t('The currency for the @name field.', array('@name' => $instance['label'])),
         'real_target' => $name,
       );
+      $targets[$name . ":include_tax"] = array(
+        'name' => $instance['label'] . ': Tax rate',
+        'callback' => 'commerce_price_feeds_set_target',
+        'description' => t('The inclusive tax rate to set on the product price for the @name field.', array('@name' => $instance['label'])),
+        'real_target' => $name,
+      );
     }
   }
 }
@@ -81,6 +87,9 @@
       }
       elseif ($sub_field == 'currency_code') {
         $field[LANGUAGE_NONE][$i]['currency_code'] = $v;
+      }
+      elseif ($sub_field == 'include_tax') {
+        $field[LANGUAGE_NONE][$i]['data']['include_tax'] = $v;
       }
     }
     if ($info['cardinality'] == 1) {
