Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 601a8eb7

Von Jan Büren vor fast 2 Jahren hinzugefügt

  • ID 601a8eb7675b592de42f91ff76a1c57848ac0ce5
  • Vorgänger efd84f2a
  • Nachfolger ab50d94f

Shopware6: shop_order_items referenzieren prozentualen rabatt

Unterschiede anzeigen:

SL/DB/MetaSetup/ShopOrderItem.pm
__PACKAGE__->meta->columns(
active_price_source => { type => 'text' },
description => { type => 'text' },
discount => { type => 'float', precision => 4, scale => 4 },
discount_code => { type => 'text' },
id => { type => 'serial', not_null => 1 },
identitfier => { type => 'text' },
partnumber => { type => 'text' },
position => { type => 'integer' },
price => { type => 'numeric', precision => 15, scale => 5 },
sql/Pg-upgrade2/shop_order_items_discount.sql
-- @tag: shop_order_items_discount
-- @description: shop_order_items haben einen identifier und referenzieren prozentualen rabatt
-- @depends: shop_orders_update_4
-- @ignore: 0
ALTER TABLE shop_order_items ADD COLUMN discount REAL;
ALTER TABLE shop_order_items ADD COLUMN discount_code TEXT;
ALTER TABLE shop_order_items ADD COLUMN identitfier TEXT;

Auch abrufbar als: Unified diff