From: <dai...@us...> - 2016-08-11 09:43:31
|
Revision: 7585 http://sourceforge.net/p/web-erp/reponame/7585 Author: daintree Date: 2016-08-11 09:43:28 +0000 (Thu, 11 Aug 2016) Log Message: ----------- Falkoner: fix to customer statements new field required in custcontacts to flag the contact that should receive the emailed statement Modified Paths: -------------- trunk/doc/Change.log trunk/sql/mysql/upgrade4.13-4.13.1.sql Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2016-08-11 09:31:30 UTC (rev 7584) +++ trunk/doc/Change.log 2016-08-11 09:43:28 UTC (rev 7585) @@ -1,5 +1,6 @@ webERP Change Log +11/8/16 Phil: committed falkoners fix for the upgrade script - was not adding the new field in customercontact required for the customer statements email address 11/8/16 Simon Kelly: Fix SQL for location users in SelectSalesOrder.php 05/08/16 RChacon: In GLAccountInquiry.php, add noprint class to clean up printer output and improve code documentation. 05/08/16 RChacon: Fix html code in SuppInvGRNs.php. Modified: trunk/sql/mysql/upgrade4.13-4.13.1.sql =================================================================== --- trunk/sql/mysql/upgrade4.13-4.13.1.sql 2016-08-11 09:31:30 UTC (rev 7584) +++ trunk/sql/mysql/upgrade4.13-4.13.1.sql 2016-08-11 09:43:28 UTC (rev 7585) @@ -2,5 +2,6 @@ ALTER table stockrequest ADD initiator varchar(20) NOT NULL DEFAULT ''; INSERT INTO securitytokens VALUES (19,'Internal stock request fully access authority'); INSERT INTO scripts VALUES ('PDFGLJournalCN.php',1,'Print GL Journal Chinese version'); +ALTER table custcontacts ADD statement tinyint(4) NOT NULL DEFAULT 0; |