Jump to content
xt:Commerce Community Forum

Export Grundpreis Daten


Recommended Posts

Also noch paar weitere Informationen:

Google möchte diese Felder so benannt haben und inhaltlich so gefüllt haben.

unit_pricing_measure unit_pricing_base_measure
500 g 1,00 kg

 

für das Feld unit_pricing_measure exportiere ich products_weight

für das Feld unit_pricing_base_measure sollte ich nun die Verpackungseinheit exportieren, allerdings kommt mit products_vpe nur die Status ID (9) der Verpackungseinheit und nicht der hinterlegte Wert zb 1kg. products_vpe_name exportiert einen leeren Wert, products_vpe_value exportiert eine 0

Vielleicht hat jemand noch eine Idee wie ich hier weiter komme

Danke im Voraus

Link to comment
Share on other sites

  • 4 weeks later...

{$data.products_vpe} ist die Lagereinheit -> unit_pricing_measure

$data.products_unit} ist die Grundeinheit -> unit_pricing_base_measure

Allerdings ist in beiden nur der Schlüssel aus Systemstatus -> Grundeinheit/Lagereinheit hinterlegt, den musst Du im Export umbasteln.

{$data.products_vpe_value} ist der Umrechnungsfaktor

 

Link to comment
Share on other sites

Beispiel:

Ich verkaufe Kabel in 50m Ringen, die Grundpreisangabe muss in m sein. Also habe ich eine Einheit angelegt: 68 -> Ring 50m. Einheit 12 ist m.

Der Export sieht dann so aus:

{if $data.products_vpe_status != 0}
   <g:units_pricing_base_measure>
...
     {if $data.products_vpe == 68}50 m{/if}
...
  </g:units_pricing_base_measure>
   <g:units_pricing_measure>
      ...
     {if $data.products_unit == 12}1 m{/if}
   ...
  </g:units_pricing_measure>
{/if}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
  • Create New...