@extends('emails.layout') @section('title', 'New Wholesale Partner Registration') @section('header_subtitle', 'Partner Onboarding') @section('content')

New Wholesale Partner Registration 🔔

A new {{ strtolower($partnerType) }} has registered and requires approval before accessing the portal.

⚠️ Action Required: Review the registration details and approve or reject in Odoo.

{{-- Company info --}}

Company Information

Partner Type{{ $partnerType }}
Company Name{{ $companyName }}
Industry{{ $industry ?? 'Not provided' }}
TIN Number{{ $tinNumber ?? 'Not provided' }}
VAT Number{{ $vatNumber ?? 'Not provided' }}
Website{{ $website ?? 'Not provided' }}
{{-- Contact person --}}

Contact Person

Name{{ $customerName }}
Job Title{{ $jobTitle ?? 'Not provided' }}
Email{{ $email }}
Phone{{ $phone }}
Portal ID#{{ $customerId }}
Odoo Partner ID{{ $odooPartnerId ?? 'Pending sync' }}
@if($documentCount > 0) {{-- Documents --}}

Uploaded Documents ({{ $documentCount }})

@foreach($documentList as $doc) @endforeach
{{ $doc['label'] }} @if($doc['uploaded']) ✓ {{ $doc['file_name'] }} ({{ $doc['file_size'] }}) @else ✗ Not uploaded @endif
@endif @if(count($missingDocuments) > 0)

⚠️ Missing Documents

@foreach($missingDocuments as $missing)

• {{ $missing['label'] }}

@endforeach

Request these documents from the partner before approval.

@endif {{-- Approval checklist --}}

📋 Approval Checklist

1.  Review all {{ $documentCount }} attached documents

2.  Verify company credentials and TIN/VAT numbers

3.  Confirm all required documents are provided

4.  In Odoo, set the partner to "Active" to approve

Review in Odoo →
@endsection