Skip to content
Snippets Groups Projects

Fixes #282 - Product & Sercice Taxes and Shipping & Handling Taxes dilemma

Merged Fixes #282 - Product & Sercice Taxes and Shipping & Handling Taxes dilemma
Merged Satish requested to merge satish.dvnk/vtigercrm:282 into master
+ 4
2
Compare changes
  • Side-by-side
  • Inline
Files
@@ -312,8 +312,9 @@ function getAssociatedProducts($module,$focus,$seid='')
}
$product_Detail[$i]['netPrice'.$i] = $netPrice;
$taxMode = ($focus->id) ? 'available_associated' : 'all';
//First we will get all associated taxes as array
$tax_details = getTaxDetailsForProduct($hdnProductId,'all');
$tax_details = getTaxDetailsForProduct($hdnProductId, $taxMode);
//Now retrieve the tax values from the current query with the name
for($tax_count=0;$tax_count<count($tax_details);$tax_count++)
{
Loading