Merge pull request #10898 from grandoc/new_branch_21_03_2019
add some comments
This commit is contained in:
commit
5693fbfe97
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
/* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -64,7 +64,12 @@ class Bookmark extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $fk_user;
|
public $fk_user;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
public $url;
|
public $url;
|
||||||
|
|
||||||
|
|||||||
@ -1693,13 +1693,27 @@ class AccountLine extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $ref;
|
public $ref;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date (dateo)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $dateo;
|
public $dateo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Value date
|
* Date value (datev)
|
||||||
*/
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $datev;
|
public $datev;
|
||||||
|
|
||||||
public $amount;
|
public $amount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -57,7 +57,18 @@ class Deplacement extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $ismultientitymanaged = 0;
|
public $ismultientitymanaged = 0;
|
||||||
|
|
||||||
public $datec; // Creation date
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date (dated)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $dated;
|
public $dated;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -42,10 +42,20 @@ class Comment extends CommonObject
|
|||||||
* @var string description
|
* @var string description
|
||||||
*/
|
*/
|
||||||
public $description;
|
public $description;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $tms;
|
public $tms;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int ID
|
* @var int ID
|
||||||
|
|||||||
@ -73,7 +73,12 @@ class DiscountAbsolute
|
|||||||
*/
|
*/
|
||||||
public $description;
|
public $description;
|
||||||
|
|
||||||
public $datec; // Date creation
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int ID invoice line when a discount is used into an invoice line (for absolute discounts)
|
* @var int ID invoice line when a discount is used into an invoice line (for absolute discounts)
|
||||||
|
|||||||
@ -63,10 +63,28 @@ class Fiscalyear extends CommonObject
|
|||||||
* @var string fiscal year label
|
* @var string fiscal year label
|
||||||
*/
|
*/
|
||||||
public $label;
|
public $label;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date start (date_start)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $date_start;
|
public $date_start;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date end (date_end)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $date_end;
|
public $date_end;
|
||||||
public $datec;
|
|
||||||
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
public $statut; // 0=open, 1=closed
|
public $statut; // 0=open, 1=closed
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -5,8 +5,8 @@
|
|||||||
* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
|
||||||
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
||||||
* Copyright (C) 2015 Charlie Benke <charlie@patas-monkey.com>
|
* Copyright (C) 2015 Charlie Benke <charlie@patas-monkey.com>
|
||||||
* Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
|
* Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
|
||||||
* Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
|
* Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -69,12 +69,26 @@ class Fichinter extends CommonObject
|
|||||||
public $socid; // Id client
|
public $socid; // Id client
|
||||||
|
|
||||||
public $author;
|
public $author;
|
||||||
public $datec;
|
|
||||||
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
public $datev;
|
public $datev;
|
||||||
public $dateo;
|
public $dateo;
|
||||||
public $datee;
|
public $datee;
|
||||||
public $datet;
|
public $datet;
|
||||||
public $datem;
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datem;
|
||||||
|
|
||||||
public $duration;
|
public $duration;
|
||||||
public $statut = 0; // 0=draft, 1=validated, 2=invoiced, 3=Terminate
|
public $statut = 0; // 0=draft, 1=validated, 2=invoiced, 3=Terminate
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
* Copyright (C) 2005 Marc Barilley <marc@ocebo.com>
|
* Copyright (C) 2005 Marc Barilley <marc@ocebo.com>
|
||||||
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
|
||||||
* Copyright (C) 2010-2017 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2010-2017 Juanjo Menent <jmenent@2byte.es>
|
||||||
* Copyright (C) 2013-2018 Philippe Grand <philippe.grand@atoo-net.com>
|
* Copyright (C) 2013-2019 Philippe Grand <philippe.grand@atoo-net.com>
|
||||||
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
||||||
* Copyright (C) 2014-2016 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2014-2016 Marcos García <marcosgdf@gmail.com>
|
||||||
* Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.com>
|
* Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.com>
|
||||||
@ -113,10 +113,35 @@ class FactureFournisseur extends CommonInvoice
|
|||||||
|
|
||||||
public $author;
|
public $author;
|
||||||
public $libelle;
|
public $libelle;
|
||||||
public $datec; // Creation date
|
|
||||||
public $tms; // Last update date
|
/**
|
||||||
public $date; // Invoice date
|
* Date creation record (datec)
|
||||||
public $date_echeance; // Max payment date
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $tms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invoice date (date)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Max payment date (date_echeance)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $date_echeance;
|
||||||
|
|
||||||
public $amount=0;
|
public $amount=0;
|
||||||
public $remise=0;
|
public $remise=0;
|
||||||
public $tva=0;
|
public $tva=0;
|
||||||
|
|||||||
@ -40,8 +40,19 @@ class CompanyBankAccount extends Account
|
|||||||
public $rum;
|
public $rum;
|
||||||
public $date_rum;
|
public $date_rum;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
public $datem;
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datem;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -169,8 +169,21 @@ class CompanyPaymentMode extends CommonObject
|
|||||||
|
|
||||||
public $starting_date;
|
public $starting_date;
|
||||||
public $ending_date;
|
public $ending_date;
|
||||||
public $datec;
|
|
||||||
public $tms;
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $tms;
|
||||||
|
|
||||||
public $import_key;
|
public $import_key;
|
||||||
// END MODULEBUILDER PROPERTIES
|
// END MODULEBUILDER PROPERTIES
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
* Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
|
* Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
|
||||||
* Copyright (C) 2005 Lionel Cousteix <etm_ltd@tiscali.co.uk>
|
* Copyright (C) 2005 Lionel Cousteix <etm_ltd@tiscali.co.uk>
|
||||||
* Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
|
* Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
|
||||||
* Copyright (C) 2013-2018 Philippe Grand <philippe.grand@atoo-net.com>
|
* Copyright (C) 2013-2019 Philippe Grand <philippe.grand@atoo-net.com>
|
||||||
* Copyright (C) 2013-2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
* Copyright (C) 2013-2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||||
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
|
||||||
* Copyright (C) 2018 charlene Benke <charlie@patas-monkey.com>
|
* Copyright (C) 2018 charlene Benke <charlie@patas-monkey.com>
|
||||||
@ -108,8 +108,19 @@ class User extends CommonObject
|
|||||||
//! Encrypted password in database (always defined)
|
//! Encrypted password in database (always defined)
|
||||||
public $pass_indatabase_crypted;
|
public $pass_indatabase_crypted;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
public $datem;
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datem;
|
||||||
|
|
||||||
//! If this is defined, it is an external user
|
//! If this is defined, it is an external user
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -36,7 +36,18 @@ class UserBankAccount extends Account
|
|||||||
{
|
{
|
||||||
public $socid;
|
public $socid;
|
||||||
|
|
||||||
public $datec;
|
/**
|
||||||
|
* Date creation record (datec)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
public $datec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Date modification record (tms)
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $datem;
|
public $datem;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user