Compare commits
3 Commits
e7100121d4
...
10f4fefb0c
Author | SHA1 | Date |
---|---|---|
Alejandro Tasistro | 10f4fefb0c | |
Alejandro Tasistro | f3ee5ea7d9 | |
Alejandro Tasistro | 5b2c489f2d |
|
@ -18,8 +18,6 @@ class CreateSubpedidosTable extends Migration
|
||||||
$table->string('nombre');
|
$table->string('nombre');
|
||||||
$table->foreignId('grupo_de_compra_id');
|
$table->foreignId('grupo_de_compra_id');
|
||||||
$table->boolean('aprobado')->default(false);
|
$table->boolean('aprobado')->default(false);
|
||||||
$table->double('devoluciones_total', 10, 2)->default(0);
|
|
||||||
$table->string('devoluciones_notas')->default("");
|
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
class DevolucionesPedido extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('subpedidos', function (Blueprint $table) {
|
||||||
|
$table->double('devoluciones_total', 10, 2)->default(0);
|
||||||
|
$table->string('devoluciones_notas')->default("");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('subpedidos', function (Blueprint $table) {
|
||||||
|
$table->dropColumn('devoluciones_total');
|
||||||
|
$table->dropColumn('devoluciones_notas');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,7 +5,7 @@
|
||||||
<span class="icon is-small mr-1">
|
<span class="icon is-small mr-1">
|
||||||
<img src="/assets/chismosa.png">
|
<img src="/assets/chismosa.png">
|
||||||
</span>
|
</span>
|
||||||
<span v-text="'$' + this.$limpiarInt(this.$root.pedido.total)"></span>
|
<span v-text="'$' + this.$limpiarInt(this.$root.pedido.total_menos_devoluciones)"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="dropdown-menu chismosa-menu" :id="id" role="menu">
|
<div class="dropdown-menu chismosa-menu" :id="id" role="menu">
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ pedido.nombre }}</td>
|
<td>{{ pedido.nombre }}</td>
|
||||||
<td class="has-text-right" >{{ this.$limpiarInt(pedido.total) }}</td>
|
<td class="has-text-right" >{{ this.$limpiarInt(pedido.total) }}</td>
|
||||||
<td class="has-text-right" >-{{ pedido.devoluciones_total }}</td>
|
<td class="has-text-right" ><abbr :title="pedido.devoluciones_notas">-{{ pedido.devoluciones_total }}</abbr></td>
|
||||||
<td class="has-text-right" >{{ pedido.total_menos_devoluciones }}</td>
|
<td class="has-text-right" >{{ pedido.total_menos_devoluciones }}</td>
|
||||||
<td>
|
<td>
|
||||||
<pedidos-admin-switch-aprobacion
|
<pedidos-admin-switch-aprobacion
|
||||||
|
|
Loading…
Reference in New Issue