mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27: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();
|
$this->app->ExitXentral();
|
||||||
}
|
}
|
||||||
|
|
||||||
$address['sendungsart'] = CustomsInfo::CUSTOMS_TYPE_GOODS;
|
$address['shipment_type'] = CustomsInfo::CUSTOMS_TYPE_GOODS;
|
||||||
$products = $this->GetShippingProducts();
|
$products = $this->GetShippingProducts();
|
||||||
$products = array_combine(array_column($products, 'Id'), $products);
|
$products = array_combine(array_column($products, 'Id'), $products);
|
||||||
$address['product'] = $products[0]->Id ?? '';
|
$address['product'] = $products[0]->Id ?? '';
|
||||||
|
@ -175,7 +175,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>{|Sendungsart|}:</td>
|
<td>{|Sendungsart|}:</td>
|
||||||
<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>
|
<option v-for="(value, key) in customs_shipment_types" :value="key">{{value}}</option>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user