UpsCpr.CompiereOrganisation

Définition

Le type CompiereOrganisation modélise un niveau de l'organisation de l'entreprise.

/****************************************************************/
Type CompiereOrganisation Implemente IOrganisation Metier Defaut
/* Objet : Definition d'un niveau de l'organisation. */
/****************************************************************/
/*--------------------------------------------------------------*/
/* Heritage de Objet. */
/*--------------------------------------------------------------*/
Prive :

Public : Prive : /*--------------------------------------------------------------*/
/* Heritage de IObjetMetier. */
/*--------------------------------------------------------------*/
Prive : Public : /*--------------------------------------------------------------*/
/* Definitions propres. */
/*--------------------------------------------------------------*/
Public : Fin Interface Fin Type

Opérateurs

Le type CompiereOrganisation possède les opérateurs standards suivants : Le type CompiereOrganisation comporte un constructeur implicite.

Exemple

Variable
/*******/

Principal
/********/
Variable Debut
...
/* ------------------------------------------------ */
/* Creation d'une organisation. */
/* ------------------------------------------------ */
MonOrganisation=CompiereOrganisation();
MonOrganisation.Libelle="DAF";
MonOrganisation.Commentaire="Direction Administrative et Financière";
MonOrganisation.EstRattacheA=ISociete(MaSociete);
MonOrganisation.Responsable=IPersonnel(MonResponsable);
MonOrganisation.Personnel=Nul;
MonOrganisation.SousOrganisations=Nul;
...
Si O1==O2 Alors
/* Egalité entre deux organisations. */ Fin Si
Si O1!=O2 Alors
/* Inégalité entre deux organisations. */ Fin Si
Fin Principal

Connecteur

Up ! Business.Compiere.
Insererorg.compiere.model.X_AD_Org.X_AD_Org(java.util.Properties ctx, int AD_Org_ID, String P3);

Traduction

---------