|
From: <ex...@us...> - 2016-07-27 09:27:08
|
Revision: 7575
http://sourceforge.net/p/web-erp/reponame/7575
Author: exsonqu
Date: 2016-07-27 09:27:05 +0000 (Wed, 27 Jul 2016)
Log Message:
-----------
27/07/16 Exson: Fixed the typo in Credit_Invoice.php introduced in previous update.
Modified Paths:
--------------
trunk/Credit_Invoice.php
trunk/doc/Change.log
Modified: trunk/Credit_Invoice.php
===================================================================
--- trunk/Credit_Invoice.php 2016-07-27 07:19:16 UTC (rev 7574)
+++ trunk/Credit_Invoice.php 2016-07-27 09:27:05 UTC (rev 7575)
@@ -230,7 +230,7 @@
if(isset($_POST['ChargeFreightCost'])) {
$_SESSION['CreditItems' . $identifier]->FreightCost = filter_number_format($_POST['ChargeFreightCost']);
- if (($TotalQtyCredit + abs($_POST['ChargeFreightCost']))<=0) {
+ if (($TotalQtyCredited + abs($_POST['ChargeFreightCost']))<=0) {
prnMsg(_('There are no item quantity or freight charge input'),'error');
if (isset($_POST['ProcessCredit'])) {
unset($_POST['ProcessCredit']);
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2016-07-27 07:19:16 UTC (rev 7574)
+++ trunk/doc/Change.log 2016-07-27 09:27:05 UTC (rev 7575)
@@ -1,5 +1,5 @@
webERP Change Log
-
+27/07/16 Exson: Fixed the typo in Credit_Invoice.php introduced in previous update.
27/07/16 Exson: Fixed the divided by zero error when discount is 100% in SelectOrderItems.php.
27/07/16 Exson: Add error proof to avoid a blank credit note issued without any items credited or freight charge input in Credit_Invoice.php.
25/07/16 Exson: Add InternalStockRequestInquiry.php script.
|