all feature

This commit is contained in:
antv
2026-06-29 11:55:33 +07:00
parent 08d13336cd
commit 8a77324f89
59 changed files with 5587 additions and 145 deletions
@@ -11,30 +11,20 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
Schema::create('user', function (Blueprint $table) {
$table->string('msnv')->primary();
$table->string('mail');
$table->string('pass');
$table->tinyInteger('role')->default(0)->comment('0: member / 1: admin');
$table->tinyInteger('status')->default(1)->comment('0: đã nghỉ / 1: đang làm');
$table->integer('card')->nullable();
$table->tinyInteger('flag_send')->default(0)->comment('0: không được gửi / 1: được gửi');
$table->tinyInteger('first_login')->default(1)->comment('0: không là lần đầu / 1: lần đầu');
$table->rememberToken();
$table->timestamps();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
// Only user table remains
}
/**
@@ -42,8 +32,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
Schema::dropIfExists('user');
}
};
@@ -1,35 +0,0 @@
<?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('cache', function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration')->index();
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};
@@ -1,57 +0,0 @@
<?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('jobs', function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
Schema::dropIfExists('job_batches');
Schema::dropIfExists('failed_jobs');
}
};
@@ -0,0 +1,31 @@
<?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('add_card', function (Blueprint $table) {
$table->id();
$table->string('buyer');
$table->integer('num_card');
$table->string('seller');
$table->date('date')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('add_card');
}
};
@@ -0,0 +1,33 @@
<?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('administration', function (Blueprint $table) {
$table->id();
$table->string('msnv');
$table->integer('received')->nullable();
$table->string('sender')->nullable();
$table->integer('sent')->nullable();
$table->string('receiver')->nullable();
$table->date('date')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('administration');
}
};
+167
View File
@@ -0,0 +1,167 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use App\Models\User;
use App\Models\Administration;
use App\Models\AddCard;
use Illuminate\Support\Facades\Hash;
use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
class MockDataSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
// Clear old data to avoid duplicates when running again
DB::statement('SET FOREIGN_KEY_CHECKS=0;');
User::truncate();
Administration::truncate();
AddCard::truncate();
DB::statement('SET FOREIGN_KEY_CHECKS=1;');
$password = Hash::make('123456');
// 1. CREATE USERS
// Admins
User::create([
'msnv' => 'ADMIN',
'mail' => 'admin@runsystem.net',
'pass' => $password,
'role' => User::ROLE_ADMIN,
'status' => User::STATUS_ACTIVE,
'card' => 0,
'flag_send' => User::FLAG_SEND_ENABLED,
'first_login' => User::FIRST_LOGIN_FALSE,
]);
User::create([
'msnv' => 'ADMIN2',
'mail' => 'admin2@runsystem.net',
'pass' => $password,
'role' => User::ROLE_ADMIN,
'status' => User::STATUS_ACTIVE,
'card' => 0,
'flag_send' => User::FLAG_SEND_ENABLED,
'first_login' => User::FIRST_LOGIN_FALSE,
]);
// Active Users (Initialize with specific users needed for logs/transactions)
$users = [
['msnv' => 'DEV001', 'mail' => 'nguyenvana@runsystem.net', 'card' => 15, 'flag' => User::FLAG_SEND_ENABLED, 'first_login' => User::FIRST_LOGIN_FALSE],
['msnv' => 'DEV002', 'mail' => 'tranthingoc@runsystem.net', 'card' => 3, 'flag' => User::FLAG_SEND_ENABLED, 'first_login' => User::FIRST_LOGIN_FALSE],
['msnv' => 'TEST01', 'mail' => 'lekiemthu@runsystem.net', 'card' => 8, 'flag' => User::FLAG_SEND_ENABLED, 'first_login' => User::FIRST_LOGIN_TRUE], // First-time login
['msnv' => 'HR001', 'mail' => 'phongnhansu@runsystem.net', 'card' => 0, 'flag' => User::FLAG_SEND_DISABLED, 'first_login' => User::FIRST_LOGIN_FALSE], // Disabled sending permission
['msnv' => 'SALE01', 'mail' => 'bangiang@runsystem.net', 'card' => 50, 'flag' => User::FLAG_SEND_ENABLED, 'first_login' => User::FIRST_LOGIN_FALSE],
];
// Generate additional users to reach exactly 100 member users
for ($i = 3; $i <= 97; $i++) {
$numStr = str_pad($i, 3, '0', STR_PAD_LEFT);
$users[] = [
'msnv' => 'DEV' . $numStr,
'mail' => 'dev' . $numStr . '@runsystem.net',
'card' => rand(0, 30),
'flag' => rand(0, 5) > 0 ? User::FLAG_SEND_ENABLED : User::FLAG_SEND_DISABLED,
'first_login' => rand(0, 4) == 0 ? User::FIRST_LOGIN_TRUE : User::FIRST_LOGIN_FALSE
];
}
foreach ($users as $u) {
User::create([
'msnv' => $u['msnv'],
'mail' => $u['mail'],
'pass' => $password,
'role' => User::ROLE_MEMBER,
'status' => User::STATUS_ACTIVE,
'card' => $u['card'],
'flag_send' => $u['flag'],
'first_login' => $u['first_login'],
]);
}
// Inactive User
User::create([
'msnv' => 'OLD001',
'mail' => 'nghiduy@runsystem.net',
'pass' => $password,
'role' => User::ROLE_MEMBER,
'status' => User::STATUS_INACTIVE,
'card' => 0,
'flag_send' => User::FLAG_SEND_DISABLED,
'first_login' => User::FIRST_LOGIN_FALSE,
]);
// 2. CREATE CARD ADDITION LOGS (add_card table)
// Get the first admin (id = 1) as the loader
$adminId = 1;
$now = Carbon::now();
$addCardLogs = [
['buyer' => 'DEV001', 'num_card' => 20, 'date' => clone $now],
['buyer' => 'DEV002', 'num_card' => 10, 'date' => clone $now],
['buyer' => 'SALE01', 'num_card' => 50, 'date' => (clone $now)->subDays(2)],
['buyer' => 'TEST01', 'num_card' => 10, 'date' => (clone $now)->subMonth()], // Last month
];
foreach ($addCardLogs as $index => $log) {
AddCard::create([
'buyer' => 100 + $index, // Dummy int ID because the DB column is designed as int instead of string msnv
'num_card' => $log['num_card'],
'seller' => $adminId,
'date' => $log['date']
]);
}
// 3. CREATE CARD SENDING HISTORY (administration table)
// Create transactions to populate Top Received / Top Sent for the month
$transactions = [
// Current month transactions
['sender' => 'DEV001', 'receiver' => 'DEV002', 'amount' => 5, 'date' => clone $now],
['sender' => 'DEV001', 'receiver' => 'TEST01', 'amount' => 3, 'date' => (clone $now)->subDays(1)],
['sender' => 'SALE01', 'receiver' => 'DEV002', 'amount' => 4, 'date' => (clone $now)->subDays(2)],
['sender' => 'TEST01', 'receiver' => 'HR001', 'amount' => 2, 'date' => (clone $now)->subDays(3)],
['sender' => 'DEV002', 'receiver' => 'DEV001', 'amount' => 1, 'date' => clone $now],
// Last month transactions
['sender' => 'DEV001', 'receiver' => 'SALE01', 'amount' => 5, 'date' => (clone $now)->subMonth()],
['sender' => 'HR001', 'receiver' => 'DEV001', 'amount' => 5, 'date' => (clone $now)->subMonth()->subDays(5)],
// July 2026 transactions (Diverse Mock Data)
['sender' => 'DEV001', 'receiver' => 'SALE01', 'amount' => 4, 'date' => Carbon::create(2026, 7, 5)],
['sender' => 'SALE01', 'receiver' => 'TEST01', 'amount' => 2, 'date' => Carbon::create(2026, 7, 12)],
['sender' => 'DEV002', 'receiver' => 'HR001', 'amount' => 1, 'date' => Carbon::create(2026, 7, 18)],
['sender' => 'TEST01', 'receiver' => 'DEV001', 'amount' => 3, 'date' => Carbon::create(2026, 7, 22)],
['sender' => 'HR001', 'receiver' => 'DEV002', 'amount' => 5, 'date' => Carbon::create(2026, 7, 28)],
['sender' => 'SALE01', 'receiver' => 'DEV001', 'amount' => 2, 'date' => Carbon::create(2026, 7, 30)],
['sender' => 'DEV001', 'receiver' => 'DEV002', 'amount' => 3, 'date' => Carbon::create(2026, 7, 15)],
['sender' => 'TEST01', 'receiver' => 'SALE01', 'amount' => 4, 'date' => Carbon::create(2026, 7, 8)],
];
foreach ($transactions as $t) {
// Sender record
Administration::create([
'msnv' => $t['sender'],
'received' => 0,
'sender' => null,
'sent' => $t['amount'],
'receiver' => $t['receiver'],
'date' => $t['date']->format('Y-m-d')
]);
// Receiver record
Administration::create([
'msnv' => $t['receiver'],
'received' => $t['amount'],
'sender' => $t['sender'],
'sent' => 0,
'receiver' => null,
'date' => $t['date']->format('Y-m-d')
]);
}
}
}