Skip to content
Snippets Groups Projects
Commit 12f37bcf authored by root's avatar root
Browse files

E_All clenup in Service module

parent 7b5873e7
No related branches found
No related tags found
2 merge requests!1233E_ALL fixes across modules for PHP 8.x,!1205E_All cleanups in Service module
...@@ -236,7 +236,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -236,7 +236,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$product_Detail[$i]['delRow'.$i]="Del"; $product_Detail[$i]['delRow'.$i]="Del";
} }
if (in_array($module, $lineItemSupportedModules) || $module === 'Vendors' || (!$focus->mode && $seid)) { if (in_array($module, $lineItemSupportedModules) || $module === 'Vendors' || isset($focus->mode) && (!$focus->mode && $seid)) {
$subProductsQuery = 'SELECT vtiger_seproductsrel.crmid AS prod_id, quantity FROM vtiger_seproductsrel $subProductsQuery = 'SELECT vtiger_seproductsrel.crmid AS prod_id, quantity FROM vtiger_seproductsrel
INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_seproductsrel.crmid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_seproductsrel.crmid
INNER JOIN vtiger_products ON vtiger_products.productid = vtiger_seproductsrel.crmid INNER JOIN vtiger_products ON vtiger_products.productid = vtiger_seproductsrel.crmid
...@@ -248,8 +248,9 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -248,8 +248,9 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
} }
array_push($subParams, 'Products'); array_push($subParams, 'Products');
} else { } else {
$focusId = isset($focus->id);
$subProductsQuery = 'SELECT productid AS prod_id, quantity FROM vtiger_inventorysubproductrel WHERE id=? AND sequence_no=?'; $subProductsQuery = 'SELECT productid AS prod_id, quantity FROM vtiger_inventorysubproductrel WHERE id=? AND sequence_no=?';
$subParams = array($focus->id, $i); $subParams = array($focusId, $i);
} }
$subProductsResult = $adb->pquery($subProductsQuery, $subParams); $subProductsResult = $adb->pquery($subProductsQuery, $subParams);
$subProductsCount = $adb->num_rows($subProductsResult); $subProductsCount = $adb->num_rows($subProductsResult);
...@@ -372,6 +373,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -372,6 +373,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$tax_label = $tax_details[$tax_count]['taxlabel']; $tax_label = $tax_details[$tax_count]['taxlabel'];
$tax_value = 0; $tax_value = 0;
$tax_value = $tax_details[$tax_count]['percentage']; $tax_value = $tax_details[$tax_count]['percentage'];
if($focus->id != '' && $taxtype == 'individual') { if($focus->id != '' && $taxtype == 'individual') {
$lineItemId = $adb->query_result($result, $i-1, 'lineitem_id'); $lineItemId = $adb->query_result($result, $i-1, 'lineitem_id');
...@@ -405,12 +407,12 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -405,12 +407,12 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$finalDiscount = 0; $finalDiscount = 0;
$product_Detail[1]['final_details']['discount_type_final'] = 'zero'; $product_Detail[1]['final_details']['discount_type_final'] = 'zero';
$subTotal = ($focus->column_fields['hdnSubTotal'] != '')?$focus->column_fields['hdnSubTotal']:0; $subTotal = (isset($focus->column_fields['hdnSubTotal']) != '')?$focus->column_fields['hdnSubTotal']:0;
$subTotal = number_format($subTotal, $no_of_decimal_places,'.',''); $subTotal = number_format($subTotal, $no_of_decimal_places,'.','');
$product_Detail[1]['final_details']['hdnSubTotal'] = $subTotal; $product_Detail[1]['final_details']['hdnSubTotal'] = $subTotal;
$discountPercent = ($focus->column_fields['hdnDiscountPercent'] != '')?$focus->column_fields['hdnDiscountPercent']:0; $discountPercent = (isset($focus->column_fields['hdnDiscountPercent']) != '')?$focus->column_fields['hdnDiscountPercent']:0;
$discountAmount = ($focus->column_fields['hdnDiscountAmount'] != '')?$focus->column_fields['hdnDiscountAmount']:0; $discountAmount = (isset($focus->column_fields['hdnDiscountAmount']) != '')?$focus->column_fields['hdnDiscountAmount']:0;
if($discountPercent != '0'){ if($discountPercent != '0'){
$discountAmount = ($product_Detail[1]['final_details']['hdnSubTotal'] * $discountPercent / 100); $discountAmount = ($product_Detail[1]['final_details']['hdnSubTotal'] * $discountPercent / 100);
} }
...@@ -421,8 +423,10 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -421,8 +423,10 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$product_Detail[1]['final_details']['discount_percentage_final'] = 0; $product_Detail[1]['final_details']['discount_percentage_final'] = 0;
$product_Detail[1]['final_details']['discount_amount_final'] = $discount_amount_final; $product_Detail[1]['final_details']['discount_amount_final'] = $discount_amount_final;
$hdnDiscountPercent = (float) $focus->column_fields['hdnDiscountPercent']; if(isset($focus->column_fields) && isset($focus->column_fields['hdnDiscountPercent'])) {
$hdnDiscountAmount = (float) $focus->column_fields['hdnDiscountAmount']; $hdnDiscountPercent = (float) $focus->column_fields['hdnDiscountPercent'];
$hdnDiscountAmount = (float) $focus->column_fields['hdnDiscountAmount'];
}
if(!empty($hdnDiscountPercent)) { if(!empty($hdnDiscountPercent)) {
$finalDiscount = ($subTotal*$discountPercent/100); $finalDiscount = ($subTotal*$discountPercent/100);
...@@ -447,7 +451,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -447,7 +451,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
//suppose user want to change individual to group or vice versa in edit time the we have to show all taxes. so that here we will store all the taxes and based on need we will show the corresponding taxes //suppose user want to change individual to group or vice versa in edit time the we have to show all taxes. so that here we will store all the taxes and based on need we will show the corresponding taxes
//First we should get all available taxes and then retrieve the corresponding tax values //First we should get all available taxes and then retrieve the corresponding tax values
$tax_details = getAllTaxes('available','','edit',$focus->id); $tax_details = getAllTaxes('available','','edit',$focusId);
$taxDetails = array(); $taxDetails = array();
for($tax_count=0;$tax_count<php7_count($tax_details);$tax_count++) for($tax_count=0;$tax_count<php7_count($tax_details);$tax_count++)
...@@ -490,7 +494,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -490,7 +494,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$taxDetails[$taxId]['compoundon'] = Zend_Json::decode(html_entity_decode($tax_details[$tax_count]['compoundon'])); $taxDetails[$taxId]['compoundon'] = Zend_Json::decode(html_entity_decode($tax_details[$tax_count]['compoundon']));
} }
$compoundTaxesInfo = getCompoundTaxesInfoForInventoryRecord($focus->id, $module); $compoundTaxesInfo = getCompoundTaxesInfoForInventoryRecord($focusId, $module);
//Calculating compound info //Calculating compound info
$taxTotal = 0; $taxTotal = 0;
foreach ($taxDetails as $taxId => $taxInfo) { foreach ($taxDetails as $taxId => $taxInfo) {
...@@ -524,7 +528,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -524,7 +528,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$product_Detail[1]['final_details']['tax_totalamount'] = number_format($taxTotal, $no_of_decimal_places, '.', ''); $product_Detail[1]['final_details']['tax_totalamount'] = number_format($taxTotal, $no_of_decimal_places, '.', '');
//To set the Shipping & Handling charge //To set the Shipping & Handling charge
$shCharge = ($focus->column_fields['hdnS_H_Amount'] != '')?$focus->column_fields['hdnS_H_Amount']:0; $shCharge = (isset($focus->column_fields['hdnS_H_Amount']) != '')?$focus->column_fields['hdnS_H_Amount']:0;
$shCharge = number_format($shCharge, $no_of_decimal_places,'.',''); $shCharge = number_format($shCharge, $no_of_decimal_places,'.','');
$product_Detail[1]['final_details']['shipping_handling_charge'] = $shCharge; $product_Detail[1]['final_details']['shipping_handling_charge'] = $shCharge;
...@@ -532,7 +536,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -532,7 +536,7 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
//calculate S&H tax //calculate S&H tax
$shtaxtotal = 0; $shtaxtotal = 0;
//First we should get all available taxes and then retrieve the corresponding tax values //First we should get all available taxes and then retrieve the corresponding tax values
$shtax_details = getAllTaxes('available','sh','edit',$focus->id); $shtax_details = getAllTaxes('available','sh','edit',$focusId);
//if taxtype is group then the tax should be same for all products in vtiger_inventoryproductrel table //if taxtype is group then the tax should be same for all products in vtiger_inventoryproductrel table
for($shtax_count=0;$shtax_count<php7_count($shtax_details);$shtax_count++) for($shtax_count=0;$shtax_count<php7_count($shtax_details);$shtax_count++)
...@@ -560,12 +564,12 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal ...@@ -560,12 +564,12 @@ function getAssociatedProducts($module, $focus, $seid = '', $refModuleName = fal
$product_Detail[1]['final_details']['shtax_totalamount'] = $shtaxtotal; $product_Detail[1]['final_details']['shtax_totalamount'] = $shtaxtotal;
//To set the Adjustment value //To set the Adjustment value
$adjustment = ($focus->column_fields['txtAdjustment'] != '')?$focus->column_fields['txtAdjustment']:0; $adjustment = (isset($focus->column_fields['txtAdjustment']) != '')?$focus->column_fields['txtAdjustment']:0;
$adjustment = number_format($adjustment, $no_of_decimal_places,'.',''); $adjustment = number_format($adjustment, $no_of_decimal_places,'.','');
$product_Detail[1]['final_details']['adjustment'] = $adjustment; $product_Detail[1]['final_details']['adjustment'] = $adjustment;
//To set the grand total //To set the grand total
$grandTotal = ($focus->column_fields['hdnGrandTotal'] != '')?$focus->column_fields['hdnGrandTotal']:0; $grandTotal = (isset($focus->column_fields['hdnGrandTotal']) != '')?$focus->column_fields['hdnGrandTotal']:0;
$grandTotal = number_format($grandTotal, $no_of_decimal_places,'.',''); $grandTotal = number_format($grandTotal, $no_of_decimal_places,'.','');
$product_Detail[1]['final_details']['grandTotal'] = $grandTotal; $product_Detail[1]['final_details']['grandTotal'] = $grandTotal;
......
...@@ -178,13 +178,13 @@ class Products_Record_Model extends Vtiger_Record_Model { ...@@ -178,13 +178,13 @@ class Products_Record_Model extends Vtiger_Record_Model {
} }
} }
$productTaxes = $productDetails[1]['taxes']; $productTaxes = isset($productDetails[1]['taxes']);
if (!empty ($productDetails)) { if (!empty ($productDetails)) {
$taxCount = php7_count($productTaxes); $taxCount = php7_count($productTaxes);
$taxTotal = 0; $taxTotal = 0;
for($i=0; $i<$taxCount; $i++) { for($i=0; $i<$taxCount; $i++) {
$taxValue = $productTaxes[$i]['percentage']; $taxValue = isset($productTaxes[$i]['percentage']);
$taxAmount = $totalAfterDiscount * $taxValue / 100; $taxAmount = $totalAfterDiscount * $taxValue / 100;
$taxTotal = $taxTotal + $taxAmount; $taxTotal = $taxTotal + $taxAmount;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
class Products_RelationListView_Model extends Vtiger_RelationListView_Model { class Products_RelationListView_Model extends Vtiger_RelationListView_Model {
protected $tab_label; public $tab_label;
/** /**
* Function to get the links for related list * Function to get the links for related list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment