@extends('layouts.common') @section('headers') @endsection @section('content')

Balance.

Desglose:
@if(isset($income)) @foreach ($income->income_rows as $income_row) @endforeach @endif
# Numero de parte Cantidad original Cantidad restante salidas
{{ $loop->iteration }} {{ $income_row->part_number()->part_number }} {{ $income_row->units }} {{ $income_row->units - $income_row->get_discounted_units() }} @foreach ($income_row->get_discounting_outcomes_rows() as $outcome_row) @endforeach
# Salidas Cantidad descontada
{{ $loop->iteration }} {{ $outcome_row->outcome->getOutcomeNumber(false) }} {{ $outcome_row->units }} @if ($outcome_row->outcome->discount)@else@endif
@endsection @section('scripts') @endsection