|
From: <tu...@us...> - 2016-12-06 19:42:18
|
Revision: 7699
http://sourceforge.net/p/web-erp/reponame/7699
Author: turbopt
Date: 2016-12-06 19:42:15 +0000 (Tue, 06 Dec 2016)
Log Message:
-----------
SelectProduct.php: Add footer before the script exits when stock categories are not defined.
Modified Paths:
--------------
trunk/SelectProduct.php
trunk/doc/Change.log
Modified: trunk/SelectProduct.php
===================================================================
--- trunk/SelectProduct.php 2016-12-02 23:02:33 UTC (rev 7698)
+++ trunk/SelectProduct.php 2016-12-06 19:42:15 UTC (rev 7699)
@@ -45,6 +45,7 @@
if (DB_num_rows($result1) == 0) {
echo '<p class="bad">' . _('Problem Report') . ':<br />' . _('There are no stock categories currently defined please use the link below to set them up') . '</p>';
echo '<br /><a href="' . $RootPath . '/StockCategories.php">' . _('Define Stock Categories') . '</a>';
+ include('includes/footer.inc');
exit;
}
// end of showing search facilities
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2016-12-02 23:02:33 UTC (rev 7698)
+++ trunk/doc/Change.log 2016-12-06 19:42:15 UTC (rev 7699)
@@ -1,5 +1,6 @@
webERP Change Log
+06/12/16 PaulT: SelectProduct.php: Add footer before the script exits when stock categories are not defined.
02/12/16 PaulT: WriteReport.inc: Fix condition needed to support PHP7, reported by Tim.
02/12/16 RChacon: fix and improve code for existent parameters in GLCashFlowsSetup.php.
02/12/16 Exson: Add location code and reference to Work Orders search result in SelectWorkOrder.php.
|