diff U3 E:/patch/a/mappers/commerce_price.inc E:/patch/b/mappers/commerce_price.inc
--- E:/patch/a/mappers/commerce_price.inc	Fri Aug 10 09:51:30 2012
+++ E:/patch/b/mappers/commerce_price.inc	Thu Aug 23 09:47:18 2012
@@ -26,6 +26,14 @@
         'description' => t('The currency for the @name field.', array('@name' => $instance['label'])),
         'real_target' => $name,
       );
+      if (module_exists('commerce_tax')) {
+        $targets[$name . ":include_tax"] = array(
+          'name' => $instance['label'] . ': Tax rate',
+          'callback' => 'commerce_price_feeds_set_target',
+          'description' => t('The inclusive tax rate (machine-readable name) to set on the product price for the @name field.', array('@name' => $instance['label'])),
+          'real_target' => $name,
+        );
+      }
     }
   }
 }
@@ -81,6 +89,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) {
