Overview
Comment:Classe compte et categorie
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: f75cec84a3689022ef9163ecf12f8cc3e2884fdb
User & Date: bohwaz on 2019-02-20 17:28:07
Other Links: branch diff | manifest | tags
Context
2019-03-08
17:03
Ajout entité compte bancaire check-in: 80bb6a9ff8 user: bohwaz tags: dev
2019-02-20
17:28
Classe compte et categorie check-in: f75cec84a3 user: bohwaz tags: dev
14:52
Amélioration CSS impression des comptes check-in: e051639aca user: bohwaz tags: dev
Changes

Added src/include/lib/Garradin/Compta/Categorie.php version [cb4aae3ddf].





























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

namespace Garradin\Compta;

use Garradin\DB;
use Garradin\Utils;
use Garradin\UserException;
use Garradin\Entity;

/**
 * Catégories comptables
 */
class Categorie extends Entity
{
    const DEPENSE = 1;
    const RECETTE = 2;
    const VIREMENT = 3;

    const DETTE_ADHERENT = 5;
    const DETTE_FOURNISSEUR = 6;
    const CREANCE_ADHERENT = 7;
    const CREANCE_FOURNISSEUR = 8;

    protected $id;
    protected $type;
    protected $intitule;
    protected $description;

    protected $compte;
}

Added src/include/lib/Garradin/Compta/Compte.php version [8a97063326].















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace Garradin\Compta;

use Garradin\DB;
use Garradin\Utils;
use Garradin\UserException;

class Compte extends Entity
{
    const PASSIF = 1;
    const ACTIF = 2;
    const ACTIF_PASSIF = 3;

    const PRODUIT = 4;
    const CHARGE = 5;
    const PRODUIT_CHARGE = 6;

    const BANQUE = 7;
    const CAISSE = 8;

    const CHEQUE_A_ENCAISSER = 9;
}