Documentation code

This commit is contained in:
sparkyx 2025-03-06 09:53:46 +01:00
parent a74b6700dd
commit b7ef40dd6e
3 changed files with 8 additions and 5 deletions

View file

@ -2436,6 +2436,9 @@ td.box {
@media (min-width: 1200px) {
}
/*
* Smoke CSS (see smoke.js)
*/
.dialog-prompt {
margin-top: 15px;
text-align: center;

View file

@ -702,7 +702,7 @@ class Document
* - [DESCRIPTION]
* - [DOCUMENT_ID]
* - [DATE_PAID]
* - [NOTE]
* - [NOTE] Note from SALE or PURCHASE
*
* \param $p_tag TAG
* \param $p_array data from $_POST

View file

@ -39,7 +39,7 @@ class Fiche
var $cn; /*! < $cn database connection */
var $id; /*! < $id fiche.f_id */
var $fiche_def; /*! < $fiche_def fd_id */
var $attribut; /*! < $attribut array of attribut object */
var $attribut; /*! < $attribut array of Card_Property objects */
var $fiche_def_ref; /*!< $fiche_def_ref Type */
var $row; /*! < All the row from the ledgers */
var $quick_code; /*!< quick_code of the card */
@ -457,15 +457,15 @@ class Fiche
* \brief insert a new record thanks an array , either as parameter or $_POST
*
* \param $p_fiche_def fiche_def.fd_id
* \param $p_array is the array containing the data
* \param $p_array is the array containing the data key = av_textX where X is AD_ID
*\param $transation DEPRECATED : if we are in a transaction, we don't commit here , else if not, the
* then a transaction is started and committed
*
av_textX where X is the ad_id
*\verb
*\verbatim
example
av_text1=>'name'
\endverb
\endverbatim
*/
function insert($p_fiche_def, $p_array=null, $transaction=true)
{