Hallo,
ich verwende Kivitendo als ERP System.
Seit neustem gibt es hier auch eine Shop anbindung.
Die Daten werden hier sehr zuverlässig übertragen.
ich möchte jedoch die schnittstelle erweitern und Links zum Datenblatt übertragen.
Im folgenden Beispiel werden keine Links Übertragen.
mapping to shopware still missing attributes,metatags
%shop_data = ( name => $part->{description},
mainDetail => { number => $part->{partnumber},
inStock => $part->{onhand},
prices => [ { from => 1,
price => $price*1.19,
customerGroupKey => ‘EK’,
},
{ from => 1,
price => $price,
customerGroupKey => ‘AK’,
},
{ from => 1,
price => $price*0.9,
customerGroupKey => ‘H’,
},
],
#attribute => { attr1 => $cvars->{CVARNAME}->{value}, } , #HowTo handle attributes
},
supplier => $cvars->{Hersteller}, #‘AR’, # Is needed by shopware,
descriptionLong => $part->{notes}, #$shop_part->{shop_description},
active => $shop_part->active,
images => [@upload_img],
__options_images => { replace => 1, },
categories => [@cat],
description => $shop_part->{shop_description},
categories => [@cat],
tax => $taxrate,
links => ‘Test’, #$part->{microfiche},
)
;
Wo liegt mein Fehler?
Gruß Eduard