Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 4bed72f5

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID 4bed72f5dd6e29497787ab3e01c5e44c52921c7d
  • Vorgänger a7041228
  • Nachfolger e36b34d3

Überreste von "gifi" entfernen (siehe 0daf163)

Fixt #2209.

Unterschiede anzeigen:

SL/DB/Gifi.pm
1
# This file has been auto-generated only because it didn't exist.
2
# Feel free to modify it at will; it will not be overwritten automatically.
3

  
4
package SL::DB::Gifi;
5

  
6
use strict;
7

  
8
use SL::DB::MetaSetup::Gifi;
9

  
10
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
11
__PACKAGE__->meta->make_manager_class;
12

  
13
1;
SL/DB/Helper/ALL.pm
42 42
use SL::DB::FollowUpLink;
43 43
use SL::DB::GLTransaction;
44 44
use SL::DB::GenericTranslation;
45
use SL::DB::Gifi;
46 45
use SL::DB::History;
47 46
use SL::DB::Inventory;
48 47
use SL::DB::Invoice;
SL/DB/Helper/Mappings.pm
72 72
  follow_up_links                => 'follow_up_link',
73 73
  follow_ups                     => 'follow_up',
74 74
  generic_translations           => 'generic_translation',
75
  gifi                           => 'gifi',
76 75
  gl                             => 'GLTransaction',
77 76
  history_erp                    => 'history',
78 77
  inventory                      => 'inventory',
SL/DB/MetaSetup/Chart.pm
16 16
    charttype      => { type => 'character', default => 'A', length => 1 },
17 17
    category       => { type => 'character', length => 1 },
18 18
    link           => { type => 'text' },
19
    gifi_accno     => { type => 'text' },
20 19
    taxkey_id      => { type => 'integer' },
21 20
    pos_ustva      => { type => 'integer' },
22 21
    pos_bwa        => { type => 'integer' },
SL/DB/MetaSetup/Gifi.pm
1
# This file has been auto-generated. Do not modify it; it will be overwritten
2
# by rose_auto_create_model.pl automatically.
3
package SL::DB::Gifi;
4

  
5
use strict;
6

  
7
use base qw(SL::DB::Object);
8

  
9
__PACKAGE__->meta->setup(
10
  table   => 'gifi',
11

  
12
  columns => [
13
    accno       => { type => 'text' },
14
    description => { type => 'text' },
15
    id          => { type => 'serial', not_null => 1 },
16
  ],
17

  
18
  primary_key_columns => [ 'id' ],
19

  
20
  unique_key => [ 'accno' ],
21
);
22

  
23
1;
24
;
SL/DB/MetaSetup/Vendor.pm
29 29
    vendornumber   => { type => 'text' },
30 30
    cc             => { type => 'text' },
31 31
    bcc            => { type => 'text' },
32
    gifi_accno     => { type => 'text' },
33 32
    business_id    => { type => 'integer' },
34 33
    taxnumber      => { type => 'text' },
35 34
    discount       => { type => 'float', precision => 4 },

Auch abrufbar als: Unified diff