|
From: <tu...@us...> - 2017-12-19 20:49:27
|
Revision: 7890
http://sourceforge.net/p/web-erp/reponame/7890
Author: turbopt
Date: 2017-12-19 20:49:25 +0000 (Tue, 19 Dec 2017)
Log Message:
-----------
Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified.
Modified Paths:
--------------
trunk/doc/Change.log
trunk/includes/Contract_Readin.php
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-12-19 04:31:39 UTC (rev 7889)
+++ trunk/doc/Change.log 2017-12-19 20:49:25 UTC (rev 7890)
@@ -1,5 +1,6 @@
webERP Change Log
+11/19/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified.
11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink)
11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker)
11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker)
Modified: trunk/includes/Contract_Readin.php
===================================================================
--- trunk/includes/Contract_Readin.php 2017-12-19 04:31:39 UTC (rev 7889)
+++ trunk/includes/Contract_Readin.php 2017-12-19 20:49:25 UTC (rev 7890)
@@ -6,6 +6,7 @@
contracts.debtorno,
contracts.branchcode,
contracts.loccode,
+ contracts.customerref,
status,
categoryid,
orderno,
@@ -39,6 +40,7 @@
$_SESSION['Contract'.$identifier]->DebtorNo = $myrow['debtorno'];
$_SESSION['Contract'.$identifier]->BranchCode = $myrow['branchcode'];
$_SESSION['Contract'.$identifier]->LocCode = $myrow['loccode'];
+ $_SESSION['Contract'.$identifier]->CustomerRef = $myrow['customerref'];
$_SESSION['Contract'.$identifier]->Status = $myrow['status'];
$_SESSION['Contract'.$identifier]->CategoryID = $myrow['categoryid'];
$_SESSION['Contract'.$identifier]->OrderNo = $myrow['orderno'];
|