Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 5f2204ca

Von Werner Hahn vor fast 7 Jahren hinzugefügt

  • ID 5f2204caccdd722d19ea6f4bf8416313a73225a2
  • Vorgänger a5de1c01
  • Nachfolger 80718893

Shopmodul: active_price_source anhand von Shopartikelkonfiguration mit in Shoporder übernommen, Kundenpreisgruppe anhand von Shopkonfiguration beim anlegen des Kunden übernommen

Unterschiede anzeigen:

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

  
11 11
__PACKAGE__->meta->columns(
12
  description   => { type => 'text' },
13
  id            => { type => 'serial', not_null => 1 },
14
  partnumber    => { type => 'text' },
15
  position      => { type => 'integer' },
16
  price         => { type => 'numeric', precision => 15, scale => 5 },
17
  quantity      => { type => 'numeric', precision => 25, scale => 5 },
18
  shop_id       => { type => 'integer' },
19
  shop_order_id => { type => 'integer' },
20
  shop_trans_id => { type => 'integer', not_null => 1 },
21
  tax_rate      => { type => 'numeric', precision => 15, scale => 2 },
12
  active_price_source => { type => 'text' },
13
  description         => { type => 'text' },
14
  id                  => { type => 'serial', not_null => 1 },
15
  partnumber          => { type => 'text' },
16
  position            => { type => 'integer' },
17
  price               => { type => 'numeric', precision => 15, scale => 5 },
18
  quantity            => { type => 'numeric', precision => 25, scale => 5 },
19
  shop_id             => { type => 'integer' },
20
  shop_order_id       => { type => 'integer' },
21
  shop_trans_id       => { type => 'integer', not_null => 1 },
22
  tax_rate            => { type => 'numeric', precision => 15, scale => 2 },
22 23
);
23 24

  
24 25
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

Auch abrufbar als: Unified diff