Author: danydb Date: 2013-03-13 16:30:37 +0100 (Wed, 13 Mar 2013) New Revision: 5185
Modified: phpcompta/tags/rel650/include/template/letter_all.php phpcompta/tags/rel650/include/template/letter_prop.php Log: 0000796: Lettrage : en code Hexad?\195?\169cimal ou en base 36 (A ?\195?\160 Z + 0 ?\195?\160 10) Modified: phpcompta/tags/rel650/include/template/letter_all.php =================================================================== --- phpcompta/tags/rel650/include/template/letter_all.php 2013-03-13 15:23:22 UTC (rev 5184) +++ phpcompta/tags/rel650/include/template/letter_all.php 2013-03-13 15:30:37 UTC (rev 5185) @@ -47,7 +47,7 @@ <tr <? echo "class=\"$class\""; ?> > <td> <?php -$letter=($this->content[$i]['letter']==-1)?"x":$this->content[$i]['letter']; +$letter=($this->content[$i]['letter']==-1)?"x":base_convert($this->content[$i]['letter'],10,36); $js="this.gDossier=".dossier::id(). ";this.j_id=".$this->content[$i]['j_id']. ";this.obj_type='".$this->object_type."'". Modified: phpcompta/tags/rel650/include/template/letter_prop.php =================================================================== --- phpcompta/tags/rel650/include/template/letter_prop.php 2013-03-13 15:23:22 UTC (rev 5184) +++ phpcompta/tags/rel650/include/template/letter_prop.php 2013-03-13 15:30:37 UTC (rev 5185) @@ -98,7 +98,7 @@ </td> <td> <?php -$letter=($this->content[$i]['letter']< 0)?" ":$this->content[$i]['letter']; +$letter=($this->content[$i]['letter']< 0)?" ":base_convert($this->content[$i]['letter'],10,36); ?> <?=$letter?> </td> --- PhpCompta est un logiciel de comptabilité libre en ligne (full web) Projet opensource http://www.phpcompta.eu _______________________________________________ Phpcompta est un logiciel libre de comptabilité en ligne (http://www.phpcompta.eu) Phpcompta-dev mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/phpcompta-dev
