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

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed May 17 07:53:33 EDT 2006


Author: saraj
Date: Wed May 17 05:53:16 2006
New Revision: 6115

Log:
* Modified the file name from salesEditView to InventoryEditView and DetailView to InventoryDetailView

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 Wed May 17 05:53:16 2006
@@ -81,6 +81,6 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Invoice/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/EditView.php (original)
+++ vtigercrm/trunk/modules/Invoice/EditView.php Wed May 17 05:53:16 2006
@@ -293,7 +293,7 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display("salesEditView.tpl");
+	$smarty->display("InventoryEditView.tpl");
 else
 	$smarty->display('InventoryCreateView.tpl');
 

Modified: vtigercrm/trunk/modules/PriceBooks/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/PriceBooks/DetailView.php (original)
+++ vtigercrm/trunk/modules/PriceBooks/DetailView.php Wed May 17 05:53:16 2006
@@ -62,5 +62,5 @@
 
 $smarty->assign("MODULE", $currentModule);
 $smarty->assign("SINGLE_MOD",$app_strings['PriceBook']);
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 ?>

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

Modified: vtigercrm/trunk/modules/Products/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Products/DetailView.php (original)
+++ vtigercrm/trunk/modules/Products/DetailView.php Wed May 17 05:53:16 2006
@@ -64,6 +64,6 @@
 $smarty->assign("CHECK", $check_button);
 //Security check for related list
 $smarty->assign("MODULE", $currentModule);
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Products/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Products/EditView.php (original)
+++ vtigercrm/trunk/modules/Products/EditView.php Wed May 17 05:53:16 2006
@@ -174,7 +174,7 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display('salesEditView.tpl');
+	$smarty->display('InventoryEditView.tpl');
 else
 	$smarty->display('InventoryCreateView.tpl');
 ?>

Modified: vtigercrm/trunk/modules/PurchaseOrder/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/PurchaseOrder/DetailView.php (original)
+++ vtigercrm/trunk/modules/PurchaseOrder/DetailView.php Wed May 17 05:53:16 2006
@@ -81,7 +81,7 @@
 
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 
 ?>

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

Modified: vtigercrm/trunk/modules/Quotes/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/DetailView.php (original)
+++ vtigercrm/trunk/modules/Quotes/DetailView.php Wed May 17 05:53:16 2006
@@ -90,6 +90,6 @@
 
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Quotes/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/EditView.php (original)
+++ vtigercrm/trunk/modules/Quotes/EditView.php Wed May 17 05:53:16 2006
@@ -241,7 +241,7 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
-	$smarty->display("salesEditView.tpl");
+	$smarty->display("InventoryEditView.tpl");
 else
 	$smarty->display('InventoryCreateView.tpl');
 

Modified: vtigercrm/trunk/modules/SalesOrder/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/DetailView.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/DetailView.php Wed May 17 05:53:16 2006
@@ -87,6 +87,6 @@
 
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/SalesOrder/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/EditView.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/EditView.php Wed May 17 05:53:16 2006
@@ -290,7 +290,7 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
-	$smarty->display("salesEditView.tpl");
+	$smarty->display("InventoryEditView.tpl");
 else
 	$smarty->display('InventoryCreateView.tpl');
 

Modified: vtigercrm/trunk/modules/Vendors/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Vendors/DetailView.php (original)
+++ vtigercrm/trunk/modules/Vendors/DetailView.php Wed May 17 05:53:16 2006
@@ -62,6 +62,6 @@
 $check_button = Button_Check($module);
 $smarty->assign("CHECK", $check_button);
 
-$smarty->display("DetailView.tpl");
+$smarty->display("InventoryDetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Vendors/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Vendors/EditView.php (original)
+++ vtigercrm/trunk/modules/Vendors/EditView.php Wed May 17 05:53:16 2006
@@ -99,7 +99,7 @@
 $smarty->assign("CHECK", $check_button);
 
 if($focus->mode == 'edit')
-	$smarty->display('salesEditView.tpl');
+	$smarty->display('InventoryEditView.tpl');
 else
 	$smarty->display('InventoryCreateView.tpl');
 





More information about the vtigercrm-commits mailing list