@foreach ($itemsCrime as $numberitemCrime => $itemCrime)
@if ($numberitemCrime % 2 == 0)
ANEXO D. INVENTARIO DE ARMAS Y OBJETOS
Apartado D.3 Registro de objetos recolectados y/o asegurados relacionados con el hecho probablemente
delictivo
@endif
|
| Objeto: |
|
@php
$textNumberitemCrime = str_pad($numberitemCrime + 1, 3, '0', STR_PAD_LEFT);
@endphp
{{ $textNumberitemCrime[0] }} |
{{ $textNumberitemCrime[1] }} |
{{ $textNumberitemCrime[2] }} |
(001, 002,…, 010,…,) |
|
|
| ¿Qué encontró? (apariencia de): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Narcótico |
|
{{ $itemCrime->appearance == 'narcotico' ? 'X' : '' }} |
|
|
|
Hidrocarburo |
|
{{ $itemCrime->appearance == 'hidrocarburo' ? 'X' : '' }} |
|
|
|
Numerario |
|
{{ $itemCrime->appearance == 'numerario' ? 'X' : '' }} |
|
|
|
Otro |
|
{{ mb_strtoupper($itemCrime->other_appearance) }} |
|
|
| Seleccione con una "X" si se trata de aportación o
inspección, según corresponda. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Aportación |
|
|
|
|
|
{{ $itemCrime->provenance == 'aportacion' ? 'X' : '' }} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inspección: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lugar |
|
{{ $itemCrime->provenance == 'inspeccion_lugar' ? 'X' : '' }} |
|
|
Persona |
|
{{ $itemCrime->provenance == 'inspeccion_persona' ? 'X' : '' }} |
|
|
Vehículo |
|
{{ $itemCrime->provenance == 'inspeccion_vehiculo' ? 'X' : '' }} |
|
|
¿Dónde se encontró el objeto? |
|
{{ mb_strtoupper($itemCrime->found) }} |
|
|
| Breve descripción del objeto: |
Destino que se le dio: |
|
|
@php
$maxLines = 6;
$maxLetters = 45;
$textLines = explode('
', wordwrap(str_replace('
', ' ', nl2br($itemCrime->description, false)), $maxLetters, '
', true));
$textLinesDestination = explode('
', wordwrap(str_replace('
', ' ', nl2br($itemCrime->destination, false)), $maxLetters, '
', true));
$totalLines = count($textLines);
$totalLinesDestination = count($textLinesDestination);
$limitLines = $totalLines > $maxLines ? $maxLines : $totalLines;
$limitLines = $totalLinesDestination > $limitLines ? $totalLinesDestination : $limitLines;
@endphp
|
{{ isset($textLines[0]) ? mb_strtoupper($textLines[0]) : '' }} |
{{ isset($textLinesDestination[0]) ? mb_strtoupper($textLinesDestination[0]) : '' }} |
|
|
{{ isset($textLines[1]) ? mb_strtoupper($textLines[1]) : '' }} |
{{ isset($textLinesDestination[1]) ? mb_strtoupper($textLinesDestination[1]) : '' }} |
|
|
{{ isset($textLines[2]) ? mb_strtoupper($textLines[2]) : '' }} |
{{ isset($textLinesDestination[2]) ? mb_strtoupper($textLinesDestination[2]) : '' }} |
|
@for ($i = 3; $i < $limitLines; $i++)
|
{{ isset($textLines[$i]) ? mb_strtoupper($textLines[$i]) : '' }} |
{{ isset($textLinesDestination[$i]) ? mb_strtoupper($textLinesDestination[$i]) : '' }} |
|
@endfor
|
|
| Anote el nombre y firma de la persona a la que se le aseguró
el objeto: |
|
|
{{ mb_strtoupper($itemCrime->insured_name) }}
|
|
{{ mb_strtoupper($itemCrime->insured_first_lastname) }}
|
|
{{ mb_strtoupper($itemCrime->insured_second_lastname) }}
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
| En caso de que la persona a la que se le aseguró el objeto no
acceda a firmar, anote nombre y firma de dos testigos: |
|
|
{{ mb_strtoupper($itemCrime->witness1_name) }}
|
|
{{ mb_strtoupper($itemCrime->witness1_first_lastname) }}
|
|
{{ mb_strtoupper($itemCrime->witness1_second_lastname) }}
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
|
{{ mb_strtoupper($itemCrime->witness2_name) }}
|
|
{{ mb_strtoupper($itemCrime->witness2_first_lastname) }}
|
|
{{ mb_strtoupper($itemCrime->witness2_second_lastname) }}
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
@if ((isset($itemsCrime[$numberitemCrime + 1]) && ($numberitemCrime + 1) % 2 == 0) ||
!isset($itemsCrime[$numberitemCrime + 1]))
Apartado D.4 Datos del primer respondiente que realizó la inspección, sólo si es diferente a quien firmó
la puesta a disposición
|
|
{{ $itemCrime->firstRespondent->id != $generalDataCrime->policePresent->id
? mb_strtoupper($itemCrime->firstRespondent->police_first_lastname)
: '' }}
|
|
{{ $itemCrime->firstRespondent->id != $generalDataCrime->policePresent->id
? mb_strtoupper($itemCrime->firstRespondent->police_second_lastname)
: '' }}
|
|
{{ $itemCrime->firstRespondent->id != $generalDataCrime->policePresent->id
? mb_strtoupper($itemCrime->firstRespondent->police_name)
: '' }}
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
|
|
Adscripción: |
|
{{ $itemCrime->firstRespondent->id != $generalDataCrime->policePresent->id
? mb_strtoupper($itemCrime->firstRespondent->institution->institution)
: '' }}
|
|
Cargo/grado: |
|
{{ $itemCrime->firstRespondent->id != $generalDataCrime->policePresent->id
? mb_strtoupper($itemCrime->firstRespondent->grade->grade)
: '' }}
|
|
Firma: |
|
|
|
|
Nota: Este Anexo no sustituye la Cadena de Custodia, la cual deberá ser debidamente requisitada.
@endif
@endforeach
@empty($itemsCrime->count())
ANEXO D. INVENTARIO DE ARMAS Y OBJETOS
Apartado D.3 Registro de objetos recolectados y/o asegurados relacionados con el hecho probablemente
delictivo
|
| Objeto: |
|
|
|
|
(001, 002,…, 010,…,) |
|
|
| ¿Qué encontró? (apariencia de): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Narcótico |
|
|
|
|
|
Hidrocarburo |
|
|
|
|
|
Numerario |
|
|
|
|
|
Otro |
|
|
|
|
| Seleccione con una "X" si se trata de aportación o
inspección, según corresponda. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Aportación |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inspección: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lugar |
|
|
|
|
Persona |
|
|
|
|
Vehículo |
|
|
|
|
¿Dónde se encontró el objeto? |
|
|
|
|
| Breve descripción del objeto: |
Destino que se le dio: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Anote el nombre y firma de la persona a la que se le aseguró
el objeto: |
|
|
|
|
|
|
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
| En caso de que la persona a la que se le aseguró el objeto no
acceda a firmar, anote nombre y firma de dos testigos: |
|
|
|
|
|
|
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
|
|
|
|
|
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
Firma |
|
|
Apartado D.4 Datos del primer respondiente que realizó la inspección, sólo si es diferente a quien firmó
la puesta a disposición
|
|
|
|
|
|
|
|
|
Primer apellido |
|
Segundo apellido |
|
Nombre(s) |
|
|
|
Adscripción: |
|
|
|
Cargo/grado: |
|
|
|
Firma: |
|
|
|
|
Nota: Este Anexo no sustituye la Cadena de Custodia, la cual deberá ser debidamente requisitada.
@endempty