Merge branch 'bryam' of https://github.com/BryamE/ProyectoLauck into nLucas

This commit is contained in:
2026-05-27 10:22:18 -03:00
2 changed files with 1 additions and 328 deletions
-47
View File
@@ -30,52 +30,5 @@ class DatabaseSeeder extends Seeder
'role' => 'employee',
]);
/*Supplier::create([
'name' => 'Cámara 29 Válvula Auto',
'phone' => '3434567890',
'email' => 'suplier@suplier.com'
]);
//Crear Productos
Product::create([
'name' => 'Cámara 29 Válvula Auto',
'sku' => 'CAM-29-A',
'price' => 5000,
'cost' => 2500,
'stock_quantity' => 20,
'min_stock_alert' => 5,
'type' => 'accessory',
'suppliers_id' => 1
]);
Product::create([
'name' => 'Venzo Loki Evo 29',
'sku' => 'BIC-VEN-001',
'price' => 450000,
'cost' => 300000,
'stock_quantity' => 2,
'min_stock_alert' => 1,
'type' => 'bike',
'serial_number' => 'VZ998877',
'suppliers_id' => 1
]);
// Generar 50 productos aleatorios más
Product::factory(50)->create(); */
// Clientes y Turnos
$client = Client::create([
'name' => 'Juan Perez',
'phone' => '1122334455',
'email' => 'juan@gmail.com'
]);
Appointment::create([
'client_id' => $client->id,
'scheduled_at' => now()->addDays(1)->setHour(10)->setMinute(0),
'bike_model' => 'Trek Marlin 5',
'problem_description' => 'Service completo y ajuste de cambios',
'status' => 'pending'
]);
}
}
+1 -281
View File
@@ -13,287 +13,7 @@ class ProductSeeder extends Seeder
*/
public function run(): void
{
// Productos del Excel
$products = [
// 1. BICICLETAS
[
'name' => 'Bicicleta R12 nena-varon rueda maciza',
'sku' => 'BIC-001',
'price' => 148000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 con rayos varon',
'sku' => 'BIC-002',
'price' => 175000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 reina flecos canasto',
'sku' => 'BIC-003',
'price' => 999,
'cost' => 111,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 topmega nena',
'sku' => 'BIC-004',
'price' => 250000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 topmega varon',
'sku' => 'BIC-005',
'price' => 250000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 Max SLP',
'sku' => 'BIC-006',
'price' => 250000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R12 Max SLP rueda megnesio',
'sku' => 'BIC-007',
'price' => 268000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R12 SLP dolphin',
'sku' => 'BIC-008',
'price' => 250000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Camicleta SLP varon',
'sku' => 'BIC-009',
'price' => 139000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Camicleta SLP ruedas macizas',
'sku' => 'BIC-010',
'price' => 138000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Camicleta SLP rayos',
'sku' => 'BIC-011',
'price' => 185000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Camicleta Economica ruedas macizas rosa',
'sku' => 'BIC-012',
'price' => 100000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R14 Cross varon',
'sku' => 'BIC-013',
'price' => 228000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R14 Full nena',
'sku' => 'BIC-014',
'price' => 228000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R16 Peretti nena canasto',
'sku' => 'BIC-015',
'price' => 239000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R16 Firebird',
'sku' => 'BIC-016',
'price' => 269000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R16 Full nena',
'sku' => 'BIC-017',
'price' => 239000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike', // bike, accessory, clothing, spare
],
[
'name' => 'Bicicleta R16 dolphin/zest nena',
'sku' => 'BIC-018',
'price' => 269000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R16 Cross estabilizadores',
'sku' => 'BIC-019',
'price' => 230000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R16 Peretti Cross',
'sku' => 'BIC-020',
'price' => 235000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R16 Max SLP',
'sku' => 'BIC-021',
'price' => 268000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R16 Cross Peretti cromada',
'sku' => 'BIC-022',
'price' => 240000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R16 Cross Topmega',
'sku' => 'BIC-023',
'price' => 240000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R20 Cross',
'sku' => 'BIC-024',
'price' => 245000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R20 Peretti Cross varon',
'sku' => 'BIC-025',
'price' => 245000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R20 Max SLP varon',
'sku' => 'BIC-026',
'price' => 298000,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
[
'name' => 'Bicicleta R20 Firebird',
'sku' => 'BIC-027',
'price' => 1,
'cost' => 100000,
'stock_quantity' => 5,
'min_stock_alert' => 2,
'type' => 'bike',
],
// 2. ACCESORIOS
[
'name' => 'Cámara 29 Valvula Auto',
'sku' => 'CAM-29-A',
'price' => 5000,
'cost' => 2500,
'stock_quantity' => 50,
'min_stock_alert' => 10,
'type' => 'accessory',
],
[
'name' => 'Servicio de Lavado',
'sku' => 'SRV-LAV',
'price' => 3000,
'cost' => 0,
'stock_quantity' => 999,
'min_stock_alert' => 0,
'type' => 'clothing',
],
];
// BUCLE DE CARGA
foreach ($products as $item) {
Product::updateOrCreate(
['sku' => $item['sku']],
[
'name' => $item['name'],
'price' => $item['price'],
'cost' => $item['cost'] ?? 0,
'stock_quantity' => $item['stock_quantity'] ?? 0,
'min_stock_alert' => $item['min_stock_alert'] ?? 5,
'type' => $item['type'] ?? 'accessory',
'description' => $item['description'] ?? null,
]
);
}
}
}