Doxygen
This commit is contained in:
parent
d579c0f405
commit
9740a10d4a
@ -32,15 +32,21 @@ include_once(DOL_DOCUMENT_ROOT.'/boutique/commande/class/boutiquecommande.class.
|
|||||||
*/
|
*/
|
||||||
class BoutiqueCommande
|
class BoutiqueCommande
|
||||||
{
|
{
|
||||||
var $db ;
|
var $db;
|
||||||
|
|
||||||
var $id ;
|
var $id;
|
||||||
var $nom;
|
var $nom;
|
||||||
|
|
||||||
function BoutiqueCommande($DB, $id=0)
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param DoliDB $DB Database handler
|
||||||
|
*/
|
||||||
|
function BoutiqueCommande($DB)
|
||||||
{
|
{
|
||||||
$this->db = $DB;
|
$this->db = $DB;
|
||||||
$this->id = $id ;
|
$this->id = $id;
|
||||||
|
|
||||||
$this->billing_adr = new Address();
|
$this->billing_adr = new Address();
|
||||||
$this->delivry_adr = new Address();
|
$this->delivry_adr = new Address();
|
||||||
@ -50,12 +56,13 @@ class BoutiqueCommande
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Get object and lines from database
|
* Get object and lines from database
|
||||||
* \param rowid id of object to load
|
*
|
||||||
* \param ref Ref of order
|
* @param int $id id of object to load
|
||||||
* \return int >0 si ok, <0 si ko
|
* @param string $ref Ref of order
|
||||||
|
* @return int >0 if OK, <0 if KO
|
||||||
*/
|
*/
|
||||||
function fetch ($id,$ref='')
|
function fetch($id,$ref='')
|
||||||
{
|
{
|
||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
|
|||||||
@ -173,9 +173,12 @@ class BordereauChequeBlochet extends ModeleChequeReceipts
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate Header
|
* Generate Header
|
||||||
* @param pdf Pdf object
|
*
|
||||||
* @param page Current page number
|
* @param PDF &$pdf Pdf object
|
||||||
* @param pages Total number of pages
|
* @param int $page Current page number
|
||||||
|
* @param int $pages Total number of pages
|
||||||
|
* @param Translate $outputlangs Object language for output
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function Header(&$pdf, $page, $pages, $outputlangs)
|
function Header(&$pdf, $page, $pages, $outputlangs)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user