Documentation

This commit is contained in:
Dany wm De Bontridder 2021-07-29 21:19:27 +02:00
parent 4886d78356
commit 108de76fbd
23 changed files with 100 additions and 29 deletions

View file

@ -26,6 +26,11 @@
* @file
* @brief abstract of the table public.forecast_category
*/
/**
* @class Forecast_Category_SQL
*
* @brief ORM abstract of the table public.forecast_category
*/
class Forecast_Category_SQL extends Table_Data_SQL
{
@ -62,4 +67,4 @@ class Forecast_Category_SQL extends Table_Data_SQL
}
}
}

View file

@ -25,6 +25,10 @@
* @file
* @brief abstract of the table public.forecast_item
*/
/**
* @class Forecast_Item_SQL
* @brief ORM abstract of the table public.forecast_item
*/
class Forecast_Item_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,10 @@
* @file
* @brief abstract of the table public.forecast
*/
/**
* @class Forecast_SQL
* @brief ORM abstract of the table public.forecast
*/
class Forecast_SQL extends Table_Data_SQL
{
@ -62,4 +66,4 @@ class Forecast_SQL extends Table_Data_SQL
}
}
}

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.form_definition */
/**
* @class Form_Definition_SQL
* @brief ORM abstract of the table public.form_definition */
class Form_Definition_SQL extends \Table_Data_SQL
{

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.form_detail */
/**
* @class Form_Detail_SQL
* @brief ORM abstract of the table public.form_detail */
class Form_Detail_SQL extends \Table_Data_SQL
{

View file

@ -24,6 +24,9 @@
*
* @file
* @brief abstract of the table public.jrn_def */
/**
* @class Jrn_def_SQL
* @brief ORM abstract of the table public.jrn_def */
class Jrn_def_SQL extends Table_Data_SQL
{

View file

@ -30,7 +30,7 @@
*@brief ORM abstract of the table public.op_predef */
class Op_predef_SQL extends Table_Data_SQL
class Op_Predef_SQL extends Table_Data_SQL
{
function __construct(DatabaseCore $p_cn,$p_id=-1)
@ -72,4 +72,4 @@ class Op_predef_SQL extends Table_Data_SQL
}
}
}

View file

@ -22,7 +22,11 @@
/**
* @file
* @brief
* @brief abstract of the table public.stock_goods and public.stock_change
*/
/**
* @class Stock_Goods_Sql
* @brief ORM abstract of the table public.stock_goods
*
*/
@ -80,6 +84,10 @@ class Stock_Goods_Sql extends Table_Data_SQL
}
/**
* @class Stock_Change_Sql
* @brief ORM abstract of the table public.stock_change
*/
class Stock_Change_Sql extends Table_Data_SQL
{

View file

@ -22,10 +22,15 @@
/**
* @file
* @brief
* @brief abstract of the table public.stock_repository */
*
*/
/**
* @class Stock_Sql
*
* @brief ORM abstract of the table public.stock_repository
*/
class Stock_Sql extends Table_Data_SQL {
function __construct($cn,$p_id=-1)
{

View file

@ -25,6 +25,13 @@
*
*@file
*@brief abstract of the table public.tag_group */
/**
* @class Tag_group_SQL
* @brief ORM abstract of the table public.tag_group
*
*/
class Tag_group_SQL extends Table_Data_SQL
{
@ -57,4 +64,4 @@ function __construct(DatabaseCore $p_cn,$p_id=-1)
}
}
}

View file

@ -19,11 +19,16 @@
*/
/* * *
/**
* @file
* @brief
* @brief abstract of the table public.tmp_pcmn
*
*/
/**
* @class Tmp_Pcmn_SQL
*
* @brief ORM abstract of the table public.tmp_pcmn
*/
class Tmp_Pcmn_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,11 @@
* @brief abstract of the table public.tva_rate
*
*/
/**
* @class Tva_rate_SQL
* @brief abstract of the table public.tva_rate
*/
class Tva_rate_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,11 @@
* @file
* @brief abstract of the table public.user_filter
*/
/**
* @class User_filter_SQL
* @brief ORM abstract of the table public.user_filter
*/
class User_filter_SQL extends Table_Data_SQL
{

View file

@ -26,6 +26,10 @@
* @brief abstract of the view public.v_tva_rate
*
*/
/**
* @class V_Tva_Rate_SQL
* @brief ORM abstract of the view public.v_tva_rate
*/
class V_Tva_Rate_SQL extends Table_Data_SQL
{
@ -72,4 +76,4 @@ class V_Tva_Rate_SQL extends Table_Data_SQL
parent::__construct($p_cn, $p_id);
}
}
}