From: <ken...@us...> - 2008-11-03 15:52:25
|
Revision: 844 http://andro.svn.sourceforge.net/andro/?rev=844&view=rev Author: kendowns Date: 2008-11-03 15:52:20 +0000 (Mon, 03 Nov 2008) Log Message: ----------- Removed creation of inputMask during build, as this was experimental and it will now be done in PHP code at run-time, which is much more flexible. (Also, the actual mask generation was wrong). Modified Paths: -------------- trunk/andro/application/androBuild.php Modified: trunk/andro/application/androBuild.php =================================================================== --- trunk/andro/application/androBuild.php 2008-11-02 20:01:52 UTC (rev 843) +++ trunk/andro/application/androBuild.php 2008-11-03 15:52:20 UTC (rev 844) @@ -1651,12 +1651,10 @@ ,c.colprec,c.colscale,c.colres,c.type_id ,case when c.inputmask <> '' then c.inputmask + when COALESCE(tc.inputmask,'') <> '' + then tc.inputmask when t.inputmask <> '' then t.inputmask - when t.type_id = 'numb' - then lpad(''::text,c.colprec::int,' '::text) - ||'.'|| - lpad(''::text,c.colscale::int,' '::text) else '' end ,case when coalesce(tc.flagcarry,'') <> '' then tc.flagcarry This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |