Implemented repository mapper, and venta show
This commit is contained in:
@ -0,0 +1,34 @@
|
||||
<tr>
|
||||
<td>
|
||||
Escritura
|
||||
@if ($escritura !== null)
|
||||
<a href="{{$urls->base}}/venta/{{$venta->id}}/escritura">
|
||||
<i class="edit icon"></i>
|
||||
</a>
|
||||
@else
|
||||
<a href="{{$urls->base}}/venta/{{$venta->id}}/escritura/add">
|
||||
<i class="plus icon"></i>
|
||||
</a>
|
||||
@endif
|
||||
</td>
|
||||
@if ($escritura !== null)
|
||||
<td></td>
|
||||
<td class="right aligned">{{$format->ufs($escritura->pago->valor())}}</td>
|
||||
<td class="right aligned">{{$format->pesos($escritura->pago->valor)}}</td>
|
||||
<td id="escritura_pago" class="{{$escritura->pago->currentEstado->tipoEstadoPago->descripcion === 'no pagado' ? 'warning' : ($escritura->pago->currentEstado->tipoEstadoPago->descripcion === 'depositado' ? 'positive' : '')}}">
|
||||
<span class="text">{{$escritura->pago->currentEstado->fecha->format('d-m-Y')}}</span>
|
||||
@if ($escritura->pago->currentEstado->tipoEstadoPago->descripcion === 'no pagado')
|
||||
<a href="javascript: depositar({row_id: '#escritura_pago', pago_id: {{$escritura->pago->id}}});" title="Depositar">
|
||||
<i class="dollar sign icon"></i>
|
||||
</a>
|
||||
@elseif ($escritura->pago->currentEstado->tipoEstadoPago->descripcion === 'depositado')
|
||||
<a href="javascript: abonar({row_id: '#escritura_pago', pago_id: {{$escritura->pago->id}}});" title="Abonar">
|
||||
<i clasS="piggy bank icon"></i>
|
||||
</a>
|
||||
@endif
|
||||
</td>
|
||||
<td></td>
|
||||
@else
|
||||
<td colspan="5"></td>
|
||||
@endif
|
||||
</tr>
|
Reference in New Issue
Block a user