Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 46aad91f

Von Werner Hahn vor mehr als 6 Jahren hinzugefügt

  • ID 46aad91fe3ae6fb161cbe98edac2fc7dee7d2acd
  • Vorgänger 7df422c9
  • Nachfolger 7f776d77

Shopmodul: itime und Vorgangsbezeichnung in TBL shops
Vorgangsbezeichnung kann jetzt für jeden Shop bestimmt werden und wird
bei transfer_to_sales_order verwendet

Unterschiede anzeigen:

SL/DB/MetaSetup/Shop.pm
9 9
__PACKAGE__->meta->table('shops');
10 10

  
11 11
__PACKAGE__->meta->columns(
12
  connector         => { type => 'text' },
13
  description       => { type => 'text' },
14
  id                => { type => 'serial', not_null => 1 },
15
  last_order_number => { type => 'integer' },
16
  login             => { type => 'text' },
17
  obsolete          => { type => 'boolean', default => 'false', not_null => 1 },
18
  orders_to_fetch   => { type => 'integer' },
19
  password          => { type => 'text' },
20
  path              => { type => 'text', default => '/', not_null => 1 },
21
  port              => { type => 'integer' },
22
  price_source      => { type => 'text' },
23
  pricetype         => { type => 'text' },
24
  protocol          => { type => 'text', default => 'http', not_null => 1 },
25
  realm             => { type => 'text' },
26
  server            => { type => 'text' },
27
  sortkey           => { type => 'integer' },
28
  taxzone_id        => { type => 'integer' },
12
  connector               => { type => 'text' },
13
  description             => { type => 'text' },
14
  id                      => { type => 'serial', not_null => 1 },
15
  itime                   => { type => 'timestamp', default => 'now()' },
16
  last_order_number       => { type => 'integer' },
17
  login                   => { type => 'text' },
18
  obsolete                => { type => 'boolean', default => 'false', not_null => 1 },
19
  orders_to_fetch         => { type => 'integer' },
20
  password                => { type => 'text' },
21
  path                    => { type => 'text', default => '/', not_null => 1 },
22
  port                    => { type => 'integer' },
23
  price_source            => { type => 'text' },
24
  pricetype               => { type => 'text' },
25
  protocol                => { type => 'text', default => 'http', not_null => 1 },
26
  realm                   => { type => 'text' },
27
  server                  => { type => 'text' },
28
  sortkey                 => { type => 'integer' },
29
  taxzone_id              => { type => 'integer' },
30
  transaction_description => { type => 'text' },
29 31
);
30 32

  
31 33
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
32 34

  
35
__PACKAGE__->meta->allow_inline_column_values(1);
36

  
33 37
1;
34 38
;

Auch abrufbar als: Unified diff