| 
      
      
      From: <rc...@us...> - 2017-07-17 23:24:38
      
     | 
| Revision: 7810
          http://sourceforge.net/p/web-erp/reponame/7810
Author:   rchacon
Date:     2017-07-17 23:24:35 +0000 (Mon, 17 Jul 2017)
Log Message:
-----------
Fix call to image tick.svg
Modified Paths:
--------------
    trunk/SalesCategories.php
    trunk/SupplierPriceList.php
    trunk/doc/Change.log
    trunk/sql/mysql/country_sql/default.sql
Modified: trunk/SalesCategories.php
===================================================================
--- trunk/SalesCategories.php	2017-07-15 01:06:57 UTC (rev 7809)
+++ trunk/SalesCategories.php	2017-07-17 23:24:35 UTC (rev 7810)
@@ -1,11 +1,11 @@
 <?php
-
 /* $Id$ */
+/* Sales Category Maintenance */
 
 include('includes/session.php');
-
 $Title = _('Sales Category Maintenance');
-
+$ViewTopic = 'Inventory';
+$BookMark = 'SalesCategories';
 include('includes/header.php');
 
 echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p>';
@@ -559,7 +559,7 @@
 				<td>' . $myrow['manufacturers_name'] . '</td>
 				<td>';
 			if ($myrow['featured']==1){
-				echo '<img src="css/' . $Theme . '/images/tick.png"></td>
+				echo '<img src="css/' . $Theme . '/images/tick.svg"></td>
 				<td><a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?RemoveFeature=Yes&ParentCategory='.$ParentCategory.'&StockID='.$myrow['stockid'].'">' .  _('Cancel Feature') . '</a></td>';
 			} else {
 				echo '</td>
Modified: trunk/SupplierPriceList.php
===================================================================
--- trunk/SupplierPriceList.php	2017-07-15 01:06:57 UTC (rev 7809)
+++ trunk/SupplierPriceList.php	2017-07-17 23:24:35 UTC (rev 7810)
@@ -578,7 +578,7 @@
 				<td><input alt="', $_SESSION['DefaultDateFormat'], '" class="date" name="EffectiveFrom0" size="11" type="text" value="', date( $_SESSION['DefaultDateFormat']), '" /></td>
 				<td><input maxlength="50" name="SupplierPartNo0" size="20" type="text" value="" /></td>
 				<td><input class="number" name="MinOrderQty0" size="11" type="text" value="1" /></td>
-				<td><button name="Insert" type="submit" style="width:100%;text-align:left"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.png" width="15" /></button></td>
+				<td><button name="Insert" type="submit" style="width:100%;text-align:left"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.svg" width="15" /></button></td>
 			</tr>';
 	}
 
@@ -610,7 +610,7 @@
 		echo '<td><input class="date" size="11" name="EffectiveFrom'. $RowCounter. '" type="text" value="' . ConvertSQLDate($MyRow['effectivefrom']) . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /></td>
 				<td><input maxlength="50" name="SupplierPartNo'. $RowCounter. '" size="20" type="text" value="' . $MyRow['suppliers_partno'] . '" /></td>
 				<td><input class="number" name="MinOrderQty'. $RowCounter. '" size="11" type="text" value="' . $MyRow['minorderqty'] . '" /></td>
-				<td><button type="submit" style="width:100%;text-align:left" name="Update'.$RowCounter.'"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.png" width="15" /></button></td>
+				<td><button type="submit" style="width:100%;text-align:left" name="Update'.$RowCounter.'"><img alt="" src="' . $RootPath . '/css/' . $Theme . '/images/tick.svg" width="15" /></button></td>
 			</tr>';
 		$RowCounter++;
 	}
@@ -620,4 +620,4 @@
 	exit;
 }
 
-?>
\ No newline at end of file
+?>
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log	2017-07-15 01:06:57 UTC (rev 7809)
+++ trunk/doc/Change.log	2017-07-17 23:24:35 UTC (rev 7810)
@@ -1,5 +1,6 @@
 webERP Change Log
 
+17/07/17 RChacon: Fix call to image tick.svg.
 15/7/17  Phil: Utility script to remove all purchase back orders
 10/07/17 Exson: Fixed the wrong price bug and GP not updated correctly in SelectOrderItems.php. Report by Robert from MHHK forum.
 08/07/17 PaulT: reportwriter/admin/forms area, fix tag name in four files: <image> to <img>
Modified: trunk/sql/mysql/country_sql/default.sql
===================================================================
--- trunk/sql/mysql/country_sql/default.sql	2017-07-15 01:06:57 UTC (rev 7809)
+++ trunk/sql/mysql/country_sql/default.sql	2017-07-17 23:24:35 UTC (rev 7810)
@@ -7014,7 +7014,7 @@
 INSERT INTO `scripts` VALUES ('SalesAnalRepts.php',2,'Entry of the definition of a sales analysis report headers');
 INSERT INTO `scripts` VALUES ('SalesAnalysis_UserDefined.php',2,'Creates a pdf of a selected user defined sales analysis report');
 INSERT INTO `scripts` VALUES ('SalesByTypePeriodInquiry.php',2,'Shows sales for a selected date range by sales type/price list');
-INSERT INTO `scripts` VALUES ('SalesCategories.php',11,'');
+INSERT INTO `scripts` VALUES ('SalesCategories.php',11,'Sales Category Maintenance');
 INSERT INTO `scripts` VALUES ('SalesCategoryDescriptions.php',15,'Maintain translations for sales categories');
 INSERT INTO `scripts` VALUES ('SalesCategoryPeriodInquiry.php',2,'Shows sales for a selected date range by stock category');
 INSERT INTO `scripts` VALUES ('SalesGLPostings.php',10,'Defines the general ledger accounts used to post sales to based on product categories and sales areas');
 |