Index: ec_product/ec_product.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_product/Attic/ec_product.views.inc,v
retrieving revision 1.1.2.9
diff -u -p -r1.1.2.9 ec_product.views.inc
--- ec_product/ec_product.views.inc	2 Jul 2009 10:25:39 -0000	1.1.2.9
+++ ec_product/ec_product.views.inc	12 May 2010 15:37:56 -0000
@@ -62,11 +62,24 @@ function ec_product_views_data() {
 
   $data['ec_product']['price'] = array(
     'title' => t('Price'),
+    'help' => t('Product price after additional charges are applied'),
     'field' => array(
       'handler' => 'ec_product_views_handler_field_price',
     ),
   );
 
+  $data['ec_product']['base_price'] = array(
+    'real field' => 'price',
+    'title' => t('Base price'),
+    'help' => t('Product price before additional charges are applied'),
+    'field' => array(
+      'handler' => 'ec_product_views_handler_field_price',
+      'click sortable' => TRUE,
+    ),
+    'sort' => array(
+      'handler' => 'views_handler_sort',
+    ),
+  );
   
 
   $data['ec_product_features']['table']['group'] = t('Product');
