| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- Lib::loadClass('Core_AclSimpleSchemaBase');// extends Core_AclBase
- Lib::loadClass('Core_AclHelper');
- Lib::loadClass('Schema_DefaultDb_zaliczka_ZaliczkaStorageAcl');
- class Schema_DefaultDb_zaliczka_ZaliczkaAnulowanaStorageAcl extends Schema_DefaultDb_zaliczka_ZaliczkaStorageAcl {
- public $_simpleSchema = [
- 'root' => [
- '@namespace' => 'default_db/ZALICZKA/ZaliczkaAnulowana',// Api_WfsNs::getBaseWfsUri() . '/default_db/Zaliczka'
- '@derived' => [
- 'default_db/ZALICZKA/Zaliczka'
- ],
- 'id' => 'xsd:integer',
- 'created' => [ '@type' => 'xsd:date', '@alias' => 'A_RECORD_CREATE_DATE' ],
- 'worker' => [ '@ref' => 'default_objects/AccessOwner' ],// 'alias_ref:default_objects:AccessOwner'
- // 'worker' => [ '@ref' => 'Worker' ],
- 'kwota' => [ '@type' => 'xsd:decimal', '@totalDigits' => 16, '@fractionDigits' => 2 ],
- 'nierozliczona_kwota' => [ '@type' => 'xsd:decimal', '@totalDigits' => 16, '@fractionDigits' => 2 ],
- 'pozycja' => [ '@ref' => 'default_db/ZALICZKA_POZYCJA/ZaliczkaPozycja', '@maxOccurs' => 'unbounded' ]
- ],
- 'Korespondencja' => [
- '@namespace' => 'default_db/IN7_DZIENNIK_KORESP',
- 'id' => [ '@type' => 'xsd:integer', '@alias' => 'ID' ],
- 'title' => [ '@type' => 'xsd:string', '@alias' => 'K_ZAWARTOS' ],
- 'kategoriaKosztu' => [ '@type' => 'xsd:string', '@alias' => 'KATEGORIA_KOSZTU' ]
- ],
- 'Projekt' => [
- '@namespace' => 'default_db/IN7_MK_BAZA_DYSTRYBUCJI',
- 'id' => [ '@type' => 'xsd:integer', '@alias' => 'ID' ],
- 'nrBudowy' => [ '@type' => 'xsd:string', '@alias' => 'M_DIST_DEALNUM' ],// TODO: ? M_DIST_DESC (szerszy opis)
- ],
- ];
- }
|