mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
Versandarten: Bugfix shipment_type not transmitted
This commit is contained in:
parent
aafcb4130f
commit
d84b20fafe
@ -395,7 +395,7 @@ abstract class Versanddienstleister
|
||||
$this->app->ExitXentral();
|
||||
}
|
||||
|
||||
$address['sendungsart'] = CustomsInfo::CUSTOMS_TYPE_GOODS;
|
||||
$address['shipment_type'] = CustomsInfo::CUSTOMS_TYPE_GOODS;
|
||||
$products = $this->GetShippingProducts();
|
||||
$products = array_combine(array_column($products, 'Id'), $products);
|
||||
$address['product'] = $products[0]->Id ?? '';
|
||||
|
@ -175,7 +175,7 @@
|
||||
<tr>
|
||||
<td>{|Sendungsart|}:</td>
|
||||
<td>
|
||||
<select v-model="form.sendungsart">
|
||||
<select v-model="form.shipment_type">
|
||||
<option v-for="(value, key) in customs_shipment_types" :value="key">{{value}}</option>
|
||||
</select>
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user