Skip to content
Snippets Groups Projects
Commit d23188c6 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: doxygen

parent 422f028a
No related branches found
No related tags found
No related merge requests found
...@@ -410,6 +410,7 @@ class FactureRec extends Facture ...@@ -410,6 +410,7 @@ class FactureRec extends Facture
* @param int $type Type of line (0=product, 1=service) * @param int $type Type of line (0=product, 1=service)
* @param int $rang Position of line * @param int $rang Position of line
* @param int $special_code Special code * @param int $special_code Special code
* @param string $label Label of the line
* @return int <0 if KO, Id of line if OK * @return int <0 if KO, Id of line if OK
*/ */
function addline($facid, $desc, $pu_ht, $qty, $txtva, $fk_product=0, $remise_percent=0, $price_base_type='HT', $info_bits=0, $fk_remise_except='', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $label='') function addline($facid, $desc, $pu_ht, $qty, $txtva, $fk_product=0, $remise_percent=0, $price_base_type='HT', $info_bits=0, $fk_remise_except='', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $label='')
......
...@@ -1880,6 +1880,7 @@ class Facture extends CommonInvoice ...@@ -1880,6 +1880,7 @@ class Facture extends CommonInvoice
* @param int $fk_parent_line Id of parent line * @param int $fk_parent_line Id of parent line
* @param int $fk_fournprice To calculate margin * @param int $fk_fournprice To calculate margin
* @param int $pa_ht Buying price of line * @param int $pa_ht Buying price of line
* @param string $label Label of the line
* @return int <0 if KO, Id of line if OK * @return int <0 if KO, Id of line if OK
*/ */
function addline($facid, $desc, $pu_ht, $qty, $txtva, $txlocaltax1=0, $txlocaltax2=0, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $ventil=0, $info_bits=0, $fk_remise_except='', $price_base_type='HT', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $origin='', $origin_id=0, $fk_parent_line=0, $fk_fournprice=null, $pa_ht=0, $label='') function addline($facid, $desc, $pu_ht, $qty, $txtva, $txlocaltax1=0, $txlocaltax2=0, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $ventil=0, $info_bits=0, $fk_remise_except='', $price_base_type='HT', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $origin='', $origin_id=0, $fk_parent_line=0, $fk_fournprice=null, $pa_ht=0, $label='')
...@@ -2035,6 +2036,7 @@ class Facture extends CommonInvoice ...@@ -2035,6 +2036,7 @@ class Facture extends CommonInvoice
* @param int $skip_update_total ??? * @param int $skip_update_total ???
* @param int $fk_fournprice To calculate margin * @param int $fk_fournprice To calculate margin
* @param int $pa_ht Buying price of line * @param int $pa_ht Buying price of line
* @param string $label Label of the line
* @return int < 0 if KO, > 0 if OK * @return int < 0 if KO, > 0 if OK
*/ */
function updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $txtva, $txlocaltax1=0, $txlocaltax2=0, $price_base_type='HT', $info_bits=0, $type=0, $fk_parent_line=0, $skip_update_total=0, $fk_fournprice=null, $pa_ht=0, $label='') function updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $txtva, $txlocaltax1=0, $txlocaltax2=0, $price_base_type='HT', $info_bits=0, $type=0, $fk_parent_line=0, $skip_update_total=0, $fk_fournprice=null, $pa_ht=0, $label='')
......
...@@ -168,13 +168,14 @@ abstract class CommonDocGenerator ...@@ -168,13 +168,14 @@ abstract class CommonDocGenerator
/** /**
* Rect pdf * Rect pdf
* *
* @param unknown_type $pdf * @param PDF $pdf Object PDF
* @param unknown_type $x * @param float $x Abscissa of first point
* @param unknown_type $y * @param float $y Ordinate of first point
* @param unknown_type $l * @param float $l ??
* @param unknown_type $h * @param float $h ??
* @param int $hidetop Hide top * @param int $hidetop Hide top
* @param int $hidebottom Hide bottom * @param int $hidebottom Hide bottom
* @return void
*/ */
function printRect($pdf, $x, $y, $l, $h, $hidetop=0, $hidebottom=0) function printRect($pdf, $x, $y, $l, $h, $hidetop=0, $hidebottom=0)
{ {
......
...@@ -103,7 +103,6 @@ function member_prepare_head($object) ...@@ -103,7 +103,6 @@ function member_prepare_head($object)
/** /**
* Return array head with list of tabs to view object informations * Return array head with list of tabs to view object informations
* *
* @param Object $object Member
* @return array head * @return array head
*/ */
function member_admin_prepare_head() function member_admin_prepare_head()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment