@php use App\Http\Controllers\Mod\ModPaymentMethodRecurrent;use App\Http\Controllers\Mod\ModSalesOrderPaymentMethod;use App\Http\Controllers\ModCronos;use App\Http\Controllers\ModFinancial;use App\Models\Profile; $profile = Profile::user(); @endphp @include('system-layouts.layout-head') {{--@include('mod-negotiation-proposal.title')--}}

Warning: Undefined variable $select_user in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php on line 12
@include('mod-negotiation-confirmation.index-validation-button')
@include('mod-negotiation-confirmation.index-panel')

Warning: Undefined variable $validation_status in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php on line 38

Warning: Undefined variable $validation_status in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php on line 41

Warning: Undefined variable $validation_status in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php on line 44
@foreach($record as $row ) @php $calc_value=0; if( $row->idPaymentMethod ==1){ $calc_value += isset($row->shippingFee)?$row->shippingFee:null; //FORMA DE PAGMTO: PARCELADO $record_method = ModSalesOrderPaymentMethod::paymentMethod('0', '16024'); foreach ($record_method as $row_method) { $calc_value += isset($row_method->quotaValue) ? $row_method->quotaValue : 0; } } else { $calc_value += isset($row->shippingFee)?$row->shippingFee:null; //FORMA DE PAGMTO: RECORRENTE $record_value_rec = ModPaymentMethodRecurrent::information([ 'idSalesOrder' => $row->idSalesOrder, 'idStatusReg' => 1, 'sumValue' => 'on', 'groupBy' => 'idSalesOrder', ]); $calc_value += floatval(isset($record_value_rec->value) ? $record_value_rec->value : 0); } @endphp
Fatal error: Uncaught Error: Class "Crypt" not found in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php:131 Stack trace: #0 {main} thrown in /home/admgocrm/public_html/crm/dev/crmviews/mod-negotiation-confirmation/index.blade.php on line 131
Detalhes
@if($validation_status=='1') @endif NÂș Pedido: {{ $row->idNegotiation }}-{{ $row->idSalesOrder }} @if($validation_status=='0')
@endif Cliente: {{ $row->clientName }}@if($validation_status=='0')
@endif CNPJ: {{ $row->cnpjCpf }} @if($row->idPaymentMethod ==2) | Recorrente @endif | Valor R$ {{ModFinancial::formatMoney($calc_value,'pt_BR')}} {{-- SOMENTE ADMINISTRADOR--}} @if($profile->idUserRole ==1) @php $profile_select=Profile::user($row->idUser) @endphp | Vend.: {{$profile_select->userName}} @endif @if($validation_status ==0) Data: {{ ModCronos::convertDateTimeBR( $row->clientAcceptedDate) }} @endif @if($validation_status ==1) Data: {{ ModCronos::convertDateTimeBR( $row->clientAcceptedValidationDate) }} @endif