Merge pull request #3086 from rahulcs0082/development

Issue #3079
This commit is contained in:
Jitendra Singh 2020-05-18 20:49:33 +05:30 committed by GitHub
commit 576c3af7ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 39 additions and 2 deletions

View File

@ -312,7 +312,8 @@ return [
'refunds' => 'المسترجع',
'individual-refund' => '#:refund_id مسترجع',
'adjustment-refund' => 'تعديلات عملية الإسترجاع',
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع'
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -314,6 +314,7 @@ return [
'adjustment-refund' => 'Adjustment Refund',
'adjustment-fee' => 'Adjustment Fee',
'cancel-btn-title' => 'Cancel',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -295,7 +295,8 @@ return [
'order-date' => 'Fecha pedido',
'bill-to' => 'Facturar a',
'ship-to' => 'Envío a',
'contact' => 'Contacto'
'contact' => 'Contacto',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -313,6 +313,7 @@ return [
'individual-refund' => '#:refund_id بازپرداخت',
'adjustment-refund' => 'بازپرداخت تنظیم',
'adjustment-fee' => 'هزینه تنظیم',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -314,6 +314,7 @@ return [
'adjustment-refund' => 'Rimborso',
'adjustment-fee' => 'Commissione di rimborso',
'cancel-btn-title' => 'Cancella',
'tracking-number' => 'Tracking Number'
]
],

View File

@ -293,6 +293,7 @@ return [
'individual-refund' => '返金 #:refund_id',
'adjustment-refund' => '返金調整',
'adjustment-fee' => '調整手数料',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -318,6 +318,7 @@ return [
'individual-refund' => 'Terugbetaling #:refund_id',
'adjustment-refund' => 'Aanpassing restitutie',
'adjustment-fee' => 'Aanpassingskosten',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -313,6 +313,7 @@ return [
'adjustment-refund' => 'Wyrównania kosztów zwrotu',
'adjustment-fee' => 'Opłata za dostosowanie',
'cancel-btn-title' => 'Anuluj',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -306,6 +306,7 @@ return [
'individual-refund' => 'Refund #:refund_id',
'adjustment-refund' => 'Adjustment Refund',
'adjustment-fee' => 'Adjustment Fee',
'tracking-number' => 'Tracking Number',
]
],

View File

@ -314,6 +314,20 @@
@foreach ($order->shipments as $shipment)
<div class="sale-section">
<div class="section-content">
<div class="row">
<span class="title">
{{ __('shop::app.customer.account.order.view.tracking-number') }}
</span>
<span class="value">
{{ $shipment->track_number }}
</span>
</div>
</div>
</div>
<div class="sale-section">
<div class="secton-title">
<span>{{ __('shop::app.customer.account.order.view.individual-shipment', ['shipment_id' => $shipment->id]) }}</span>

View File

@ -333,6 +333,20 @@
@foreach ($order->shipments as $shipment)
<div class="sale-section">
<div class="section-content">
<div class="row col-12">
<label class="mr20">
{{ __('shop::app.customer.account.order.view.tracking-number') }}
</label>
<span class="value">
{{ $shipment->track_number }}
</span>
</div>
</div>
</div>
<div class="sale-section">
<div class="section-title">
<span>{{ __('shop::app.customer.account.order.view.individual-shipment', ['shipment_id' => $shipment->id]) }}</span>