This commit is contained in:
Laurent Destailleur 2011-09-03 00:19:56 +00:00
parent 351a2974dd
commit ec15a4ae3b
5 changed files with 149 additions and 147 deletions

View File

@ -518,7 +518,8 @@ $profid[3][1]=$langs->transcountry('ProfId4' ,$mysoc->pays_code);
$var = true; $var = true;
$i=0; $i=0;
while ($i < sizeof($profid)) $nbofloop=count($profid);
while ($i < $nbofloop)
{ {
$var = !$var; $var = !$var;

View File

@ -114,10 +114,11 @@ function tva_coll($db,$y,$q)
/** /**
* Gets VAT to pay for the given month of the given year * Gets VAT to pay for the given month of the given year
* The function gets the VAT in split results, as the VAT declaration asks * The function gets the VAT in split results, as the VAT declaration asks
* to report the amounts for different VAT rates as different lines. * to report the amounts for different VAT rates as different lines
* @param object Database handler object *
* @param y Year * @param DoliDB $db Database handler object
* @param q Year quarter (1-4) * @param int $y Year
* @param int $q Year quarter (1-4)
*/ */
function tva_paye($db, $y,$q) function tva_paye($db, $y,$q)
{ {

View File

@ -16,7 +16,7 @@
*/ */
/** /**
* \file htdocs/product/canvas/service/product.service.class.php * \file htdocs/product/canvas/service/actions_card_service.class.php
* \ingroup service * \ingroup service
* \brief Fichier de la classe des services par defaut * \brief Fichier de la classe des services par defaut
*/ */

View File

@ -17,7 +17,7 @@
*/ */
/** /**
* \files htdocs/societe/class/companybankaccount.class.php * \file htdocs/societe/class/companybankaccount.class.php
* \ingroup societe * \ingroup societe
* \brief File of class to manage bank accounts description of third parties * \brief File of class to manage bank accounts description of third parties
*/ */

View File

@ -127,8 +127,8 @@ input.ui-input-text, textarea.ui-input-text {
/* ============================================================================== */ /* ============================================================================== */
div.fiche { div.fiche {
margin-<?php print $left; ?>: <?php print empty($conf->browser->phone)?'10':'2'; ?>px; margin-<?php print $left; ?>: <?php print (empty($conf->browser->phone)?'10':'2'); ?>px;
margin-<?php print $right; ?>: <?php print empty($conf->browser->phone)?'6':''; ?>px; margin-<?php print $right; ?>: <?php print (empty($conf->browser->phone)?'6':''); ?>px;
} }
div.fichecenter { div.fichecenter {