Merge branch 'feature/compras' into dev

This commit is contained in:
2026-06-26 11:16:11 -03:00
10 changed files with 453 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('compras', function (Blueprint $table) {
$table->id();
$table->string('tenant_codigo');
$table->foreignId('user_id')->nullable()->constrained('users')->cascadeOnUpdate()->nullOnDelete();
$table->enum('status', ['pending', 'paid', 'cancelled'])->default('pending');
$table->enum('payment_status', ['pending', 'approved', 'rejected'])->default('pending');
$table->string('payment_method')->nullable();
$table->timestamps();
$table->foreign('tenant_codigo')
->references('codigo')
->on('tenants')
->cascadeOnUpdate()
->restrictOnDelete();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('compras');
}
};

View File

@@ -0,0 +1,40 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('compra_items', function (Blueprint $table) {
$table->id();
$table->foreignId('compra_id')->constrained('compras')->cascadeOnUpdate()->cascadeOnDelete();
$table->unsignedBigInteger('producto_variante_id');
$table->unsignedInteger('cantidad');
$table->decimal('precio_unitario', 10, 2);
$table->decimal('discount_total', 10, 2)->nullable();
$table->decimal('tax_total', 10, 2)->nullable();
$table->decimal('total', 10, 2);
$table->timestamps();
$table->foreign('producto_variante_id')
->references('id')
->on('productos_variantes')
->cascadeOnUpdate()
->restrictOnDelete();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('compra_items');
}
};