|
From: <tu...@us...> - 2018-02-11 04:11:07
|
Revision: 7950
http://sourceforge.net/p/web-erp/reponame/7950
Author: turbopt
Date: 2018-02-11 04:11:05 +0000 (Sun, 11 Feb 2018)
Log Message:
-----------
PaulT: Remove a few lingering $k and $j variables left behind from 7944 commit.
Modified Paths:
--------------
trunk/GLAccountCSV.php
trunk/GLAccountReport.php
trunk/doc/Change.log
trunk/includes/OutputSerialItems.php
Modified: trunk/GLAccountCSV.php
===================================================================
--- trunk/GLAccountCSV.php 2018-02-10 02:36:28 UTC (rev 7949)
+++ trunk/GLAccountCSV.php 2018-02-11 04:11:05 UTC (rev 7950)
@@ -204,9 +204,6 @@
$PeriodTotal = 0;
$PeriodNo = -9999;
- $j = 1;
- $k=0; //row colour counter
-
while ($myrow=DB_fetch_array($TransResult)) {
if ($myrow['periodno']!=$PeriodNo){
Modified: trunk/GLAccountReport.php
===================================================================
--- trunk/GLAccountReport.php 2018-02-10 02:36:28 UTC (rev 7949)
+++ trunk/GLAccountReport.php 2018-02-11 04:11:05 UTC (rev 7950)
@@ -132,9 +132,6 @@
$PeriodTotal = 0;
$PeriodNo = -9999;
- $j = 1;
- $k=0; //row colour counter
-
while ($myrow=DB_fetch_array($TransResult)) {
if ($myrow['periodno']!=$PeriodNo){
@@ -352,4 +349,4 @@
$YPos =$YPos - (2*$line_height);
}
-?>
+?>
\ No newline at end of file
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2018-02-10 02:36:28 UTC (rev 7949)
+++ trunk/doc/Change.log 2018-02-11 04:11:05 UTC (rev 7950)
@@ -1,5 +1,6 @@
webERP Change Log
+9/2/18 PaulT: Remove lingering $k and $j variable left behind from 7944 commit.
9/2/18 PaulT: MRPReschedules.php, MRPShortages.php: Use DB_table_exists() from commit 7943 to replace table check query.
9/2/18 PaulT: Remove the last of the remaining URL 'SID' references.
9/2/18 Paul Becker (PaulT commit): StockLocMovements.php, StockMovements.php: Add serial number column to output. (Reported in forums: http://www.weberp.org/forum/showthread.php?tid=8088)
Modified: trunk/includes/OutputSerialItems.php
===================================================================
--- trunk/includes/OutputSerialItems.php 2018-02-10 02:36:28 UTC (rev 7949)
+++ trunk/includes/OutputSerialItems.php 2018-02-11 04:11:05 UTC (rev 7950)
@@ -131,8 +131,6 @@
$TotalQuantity = 0; /*Variable to accumulate total quantity received */
$RowCounter =0;
-$k=0;
-
$StartAddingAt = 0;
if ($EditControlled){
foreach ($LineItem->SerialItems as $Bundle){
|