| Транспортная накладная | Заказ (заявка) | ||||||||||
| Дата {{$obOrder->date_departure->format('d.m.Y')}} | № {{$obOrder->id}} | Дата {{$obOrder->order_payment->paid_at->format('d.m.Y')}} | № {{$obOrder->order_offer->id}} | ||||||||
| 1. Грузоотправитель | 2. Грузополучатель | ||||||||||
|
@php
$arData = [];
if($obOrder->account->is_physical_person || $obOrder->account->is_self_employment) {
$arData[] = $obOrder->account->account_physical_person->fullname;
$arData[] = $obOrder->account->account_physical_person->address->preview;
$arData[] = CustomHelper::phone($obOrder->account->account_contact->contact_phone);
}
$sData = collect($arData)->filter()->join(', ');
@endphp
|
@php
$sData = '';
if(!$obOrder->recipient_is_legal_entity) {
$sData = collect([
$obOrder->recipient_name,
$obOrder->recipient_email,
CustomHelper::phone($obOrder->recipient_phone),
])->filter()->join(', ');
}
@endphp
|
||||||||||
| 1а. Клиент (Заказчик организации перевозки) (при необходимости) | |||||||||||
|
|
|
||||||||||
| 3. Груз | |||||||||||
|
{$sPriceText}"; @endphp |
|||||||||||
| 4. Сопроводительные документы на груз | |||||||||||
|
|
|||||||||||
| 5. Указания грузоотправителя | |||||||||||
|
{$sPriceText}"; @endphp |
|||||||||||
| 6. Прием груза | 7. Сдача груза | ||||||||||
|
Лицо, от которого забирается груз
@php
$arData = [];
if($obOrder->account->is_physical_person || $obOrder->account->is_self_employment) {
$arData[] = $obOrder->account->account_physical_person->fullname;
$arData[] = $obOrder->account->account_physical_person->address->preview;
$arData[] = CustomHelper::phone($obOrder->account->account_contact->contact_phone);
} else {
$arData[] = $obOrder->account->account_legal_entity->name;
$arData[] = $obOrder->account->account_legal_entity->inn;
$arData[] = $obOrder->account->account_legal_entity->legal_address->preview;
$arData[] = CustomHelper::phone($obOrder->account->account_contact->contact_phone);
}
$sData = collect($arData)->filter()->join(', ');
@endphp
|
|||||||||||
|
@php
$sData = $obOrder->order_cargos->sum('weight') . 'кг';
@endphp
|
@php
$sData = $obOrder->order_cargos->sum('weight') . 'кг';
@endphp
|
||||||||||
| 8. Условия перевозки | |||||||||||
|
|
|||||||||||
| 9. Информация о принятии заказа (заявки) к исполнению | |||||||||||
|
|
|||||||||||
| 10. Перевозчик | |||||||||||
|
@php
$arData = [];
if($obOrder->order_offer->account->is_physical_person || $obOrder->order_offer->account->is_self_employment) {
$arData[] = $obOrder->order_offer->account->account_physical_person->fullname;
$arData[] = $obOrder->order_offer->account->account_physical_person->address->preview;
$arData[] = CustomHelper::phone($obOrder->order_offer->account->account_contact->contact_phone);
}
$sData = collect($arData)->filter()->join(', ');
@endphp
|
|||||||||||
| 11. Транспортное средство | |||||||||||
|
|
|
||||||||||
| 12. Оговорки и замечания перевозчика | |||||||||||
|
|
|
||||||||||
| 13. Прочие условия | |||||||||||
|
|
|||||||||||
| 14. Переадресовка | |||||||||||
|
|
|
||||||||||
| 15. Подписи сторон | |||||||||||
|
|
|
||||||||||
| 16. Стоимость услуг перевозчика и порядок расчета провозной платы (при необходимости) | |||||||||||
|
@php
/**
* Провозная плата (стоимость рейса) 10 620 руб., в т.ч. НДС - 1 770 руб.
* (сумма которую перевозчик указал.
* Если стоит галочка с ндс.пишет втч ндс ндс = 20% от суммы,
* которую указал перевозчик
*/
$hasNds = $obOrder->order_offer->account->account_legal_entity->tax_type->is(\App\Enums\AccountTaxType::Nds);
if ($hasNds) {
$nNds = (int)($obOrder->order_offer->price * 0.2);
$sData = "{$obOrder->order_offer->price} руб., в т.ч. НДС - {$nNds} руб.";
} else {
$sData = "{$obOrder->order_offer->price} руб.";
}
@endphp
|
В том числе:
1) размер провозной платы (заполняется после окончания перевозки) в рублях {{$sData}} 2) расходы перевозчика и предъявляемые грузоотправителю платежи за проезд по платным автомобильным дорогам в рублях ____________ (при наличии) 3) расходы перевозчика за перевозку опасных грузов, грузов, перевозимых тяжеловесными и (или) крупногабаритными транспортными средствами, уплату таможенных пошлин и сборов в рублях ______________ (при наличии) 4) расходы на выполнение погрузо-разгрузочных работ, а также работ по промывке и дезинфекции транспортных средств в рублях ______________ (при наличии) 5) прочие расходы перевозчика в рублях ______________ (при наличии) |
||||||||||
|
@php
$arData = [];
$obAccount = $obOrder->account;
if($obOrder->account->is_physical_person || $obOrder->account->is_self_employment) {
$arData[] = $obAccount->account_physical_person->fullname;
$arData[] = $obAccount->account_physical_person->address->preview;
$arData[] = CustomHelper::phone($obAccount->account_contact->contact_phone);
$arData[] = $obAccount->account_payment_information->bank_account
? 'р/счёт:' . $obAccount->account_payment_information->bank_account
: null;
$arData[] = $obAccount->account_payment_information->bank_name ?: null;
$arData[] = $obAccount->account_payment_information->bank_bik
? 'БИК: ' . $obAccount->account_payment_information->bank_bik
: null;
$arData[] = $obAccount->account_payment_information->bank_correspondent_account
? 'Кор. счёт: ' . $obAccount->account_payment_information->bank_correspondent_account
: null;
} else {
$arData[] = $obAccount->account_legal_entity->name;
$arData[] = $obAccount->account_legal_entity->inn;
$arData[] = $obAccount->account_legal_entity->legal_address->preview;
$arData[] = CustomHelper::phone($obAccount->account_contact->contact_phone);
$arData[] = $obAccount->account_payment_information->bank_account
? 'р/счёт:' . $obAccount->account_payment_information->bank_account
: null;
$arData[] = $obAccount->account_payment_information->bank_name ?: null;
$arData[] = $obAccount->account_payment_information->bank_bik
? 'БИК: ' . $obAccount->account_payment_information->bank_bik
: null;
$arData[] = $obAccount->account_payment_information->bank_correspondent_account
? 'Кор. счёт: ' . $obAccount->account_payment_information->bank_correspondent_account
: null;
}
$sData = collect($arData)->filter()->join(', ');
@endphp
|
@php
$arData = [];
$obAccount = $obOrder->order_offer->account;
if($obAccount->is_physical_person || $obAccount->is_self_employment) {
$arData[] = $obAccount->account_physical_person->fullname;
$arData[] = $obAccount->account_physical_person->address->preview;
$arData[] = CustomHelper::phone($obAccount->account_contact->contact_phone);
} else {
$arData[] = $obAccount->account_legal_entity->name;
$arData[] = $obAccount->account_legal_entity->inn;
$arData[] = $obAccount->account_legal_entity->legal_address->preview;
$arData[] = CustomHelper::phone($obAccount->account_contact->contact_phone);
}
$sData = collect($arData)->filter()->join(', ');
@endphp
|
||||||||||
| 17. Отметки грузоотправителей, грузополучателей, перевозчиков | |||||||||||
| Краткое описание обстоятельств, послуживших основанием для отметки | Расчет и размер штрафа | Подпись, дата | |||||||||