Compare commits
No commits in common. "10f4fefb0c01c7830e1dc43e77c0e7961fb2fc52" and "e7100121d41a18b3b9dedc65b3fb58cd04b0ee3c" have entirely different histories.
10f4fefb0c
...
e7100121d4
|
@ -18,6 +18,8 @@ class CreateSubpedidosTable extends Migration
|
|||
$table->string('nombre');
|
||||
$table->foreignId('grupo_de_compra_id');
|
||||
$table->boolean('aprobado')->default(false);
|
||||
$table->double('devoluciones_total', 10, 2)->default(0);
|
||||
$table->string('devoluciones_notas')->default("");
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
<?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">
|
||||
<img src="/assets/chismosa.png">
|
||||
</span>
|
||||
<span v-text="'$' + this.$limpiarInt(this.$root.pedido.total_menos_devoluciones)"></span>
|
||||
<span v-text="'$' + this.$limpiarInt(this.$root.pedido.total)"></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="dropdown-menu chismosa-menu" :id="id" role="menu">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<tr>
|
||||
<td>{{ pedido.nombre }}</td>
|
||||
<td class="has-text-right" >{{ this.$limpiarInt(pedido.total) }}</td>
|
||||
<td class="has-text-right" ><abbr :title="pedido.devoluciones_notas">-{{ pedido.devoluciones_total }}</abbr></td>
|
||||
<td class="has-text-right" >-{{ pedido.devoluciones_total }}</td>
|
||||
<td class="has-text-right" >{{ pedido.total_menos_devoluciones }}</td>
|
||||
<td>
|
||||
<pedidos-admin-switch-aprobacion
|
||||
|
|
Loading…
Reference in New Issue