added partner number

This commit is contained in:
2025-10-29 08:12:17 +01:00
parent 899e007da9
commit 7c450fb83f
2 changed files with 2 additions and 2 deletions

View File

@@ -477,7 +477,7 @@ class CpeprovisioningController extends mfBaseController {
'spin' => $order->owner->spin, 'customer' => $order->owner->getCompanyOrName(),
'owner_email' => $order->owner->email,
'owner_phone' => $order->owner->phone,
'owner_customer_number' => $order->owner->customer_number,
'owner_customer_number' => $order->owner->customer_number ?? $order->partner_number,
'owner_full_address' => $order->owner->street . ", " . $order->owner->zip . " " . $order->owner->city,
'product_name' => $product->product->name, 'product_code' => $term->code ?? '',
'access_type' => $attrs['bras_type']->value,

View File

@@ -38,7 +38,7 @@ Vue.component('Cpeprovisioning', {
<span style="display: ruby;">
<strong>{{ item.customer }}<small v-if="item.owner_customer_number" class="text-muted ml-2">#{{ item.owner_customer_number }}</small></strong>
</span>
<small class="text-muted">SPIN: <span class="text-pink">{{ item.spin }}</span></small>
<small v-if="item.spin" class="text-muted">SPIN: <span class="text-pink">{{ item.spin }}</span></small>
</div>
<div class="location-contact-header">
<div><strong>Netzgebiet:</strong> {{ item.network || 'N/A' }}</div>