[Vtigercrm-commits] [vtiger-commits] r6563 - in /vtigercrm/trunk/modules: Invoice/ PriceBooks/ Products/ PurchaseOrder/ Quotes/ SalesOrder/ Vendors/

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Sat May 27 19:23:34 EDT 2006


Author: saraj
Date: Sat May 27 17:23:19 2006
New Revision: 6563

Log:
* Modified the Smarty file path where as all the inventory related tpl files have been moved inside the Inventory folder

Modified:
    vtigercrm/trunk/modules/Invoice/DetailView.php
    vtigercrm/trunk/modules/Invoice/EditView.php
    vtigercrm/trunk/modules/PriceBooks/DetailView.php
    vtigercrm/trunk/modules/PriceBooks/EditView.php
    vtigercrm/trunk/modules/Products/DetailView.php
    vtigercrm/trunk/modules/Products/EditView.php
    vtigercrm/trunk/modules/PurchaseOrder/DetailView.php
    vtigercrm/trunk/modules/PurchaseOrder/EditView.php
    vtigercrm/trunk/modules/Quotes/DetailView.php
    vtigercrm/trunk/modules/Quotes/EditView.php
    vtigercrm/trunk/modules/SalesOrder/DetailView.php
    vtigercrm/trunk/modules/SalesOrder/EditView.php
    vtigercrm/trunk/modules/Vendors/DetailView.php
    vtigercrm/trunk/modules/Vendors/EditView.php

Modified: vtigercrm/trunk/modules/Invoice/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/DetailView.php (original)
+++ vtigercrm/trunk/modules/Invoice/DetailView.php Sat May 27 17:23:19 2006
@@ -89,6 +89,6 @@
 $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']);
 $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']);
 
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Invoice/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/EditView.php (original)
+++ vtigercrm/trunk/modules/Invoice/EditView.php Sat May 27 17:23:19 2006
@@ -312,8 +312,8 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display("InventoryEditView.tpl");
+	$smarty->display("Inventory/InventoryEditView.tpl");
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 
 ?>

Modified: vtigercrm/trunk/modules/PriceBooks/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/PriceBooks/DetailView.php (original)
+++ vtigercrm/trunk/modules/PriceBooks/DetailView.php Sat May 27 17:23:19 2006
@@ -73,5 +73,5 @@
 
 $smarty->assign("MODULE", $currentModule);
 $smarty->assign("SINGLE_MOD",$app_strings['PriceBook']);
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 ?>

Modified: vtigercrm/trunk/modules/PriceBooks/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/PriceBooks/EditView.php (original)
+++ vtigercrm/trunk/modules/PriceBooks/EditView.php Sat May 27 17:23:19 2006
@@ -93,7 +93,7 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display('InventoryEditView.tpl');
+	$smarty->display('Inventory/InventoryEditView.tpl');
 else 
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 ?>

Modified: vtigercrm/trunk/modules/Products/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Products/DetailView.php (original)
+++ vtigercrm/trunk/modules/Products/DetailView.php Sat May 27 17:23:19 2006
@@ -88,6 +88,6 @@
 
 //Security check for related list
 $smarty->assign("MODULE", $currentModule);
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Products/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Products/EditView.php (original)
+++ vtigercrm/trunk/modules/Products/EditView.php Sat May 27 17:23:19 2006
@@ -206,7 +206,7 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display('InventoryEditView.tpl');
+	$smarty->display('Inventory/InventoryEditView.tpl');
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 ?>

Modified: vtigercrm/trunk/modules/PurchaseOrder/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/PurchaseOrder/DetailView.php (original)
+++ vtigercrm/trunk/modules/PurchaseOrder/DetailView.php Sat May 27 17:23:19 2006
@@ -90,7 +90,7 @@
 
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 
 ?>

Modified: vtigercrm/trunk/modules/PurchaseOrder/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/PurchaseOrder/EditView.php (original)
+++ vtigercrm/trunk/modules/PurchaseOrder/EditView.php Sat May 27 17:23:19 2006
@@ -194,7 +194,7 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
-	$smarty->display('InventoryEditView.tpl');
+	$smarty->display('Inventory/InventoryEditView.tpl');
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 ?>

Modified: vtigercrm/trunk/modules/Quotes/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/DetailView.php (original)
+++ vtigercrm/trunk/modules/Quotes/DetailView.php Sat May 27 17:23:19 2006
@@ -135,6 +135,6 @@
 $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$fldDataType);
 $smarty->assign("VALIDATION_DATA_FIELDLABEL",$fieldLabel);$quote_tables = Array('quotes','quotesbillads','quotesshipads'); 
 
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Quotes/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/EditView.php (original)
+++ vtigercrm/trunk/modules/Quotes/EditView.php Sat May 27 17:23:19 2006
@@ -241,8 +241,8 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
-	$smarty->display("InventoryEditView.tpl");
+	$smarty->display("Inventory/InventoryEditView.tpl");
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 
 ?>

Modified: vtigercrm/trunk/modules/SalesOrder/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/DetailView.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/DetailView.php Sat May 27 17:23:19 2006
@@ -96,6 +96,6 @@
 
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/SalesOrder/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/EditView.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/EditView.php Sat May 27 17:23:19 2006
@@ -315,8 +315,8 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
-	$smarty->display("InventoryEditView.tpl");
+	$smarty->display("Inventory/InventoryEditView.tpl");
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 
 ?>

Modified: vtigercrm/trunk/modules/Vendors/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Vendors/DetailView.php (original)
+++ vtigercrm/trunk/modules/Vendors/DetailView.php Sat May 27 17:23:19 2006
@@ -69,6 +69,6 @@
 $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']);
 $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']);
 
-$smarty->display("InventoryDetailView.tpl");
+$smarty->display("Inventory/InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Vendors/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Vendors/EditView.php (original)
+++ vtigercrm/trunk/modules/Vendors/EditView.php Sat May 27 17:23:19 2006
@@ -99,8 +99,8 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display('InventoryEditView.tpl');
+	$smarty->display('Inventory/InventoryEditView.tpl');
 else
-	$smarty->display('InventoryCreateView.tpl');
+	$smarty->display('Inventory/InventoryCreateView.tpl');
 
 ?>





More information about the vtigercrm-commits mailing list