[WIP] ASO Payment
This commit is contained in:
@@ -17,28 +17,28 @@ return new class extends Migration
|
||||
$table->id();
|
||||
$table->string('code')->index();
|
||||
$table->foreignId('member_id')->index();
|
||||
$table->foreignId('diagnosis_id')->index()->nullable();
|
||||
$table->string('total_claim')->nullable();
|
||||
// $table->foreignId('diagnosis_id')->index()->nullable();
|
||||
$table->string('currency');
|
||||
$table->string('total_claim')->nullable();
|
||||
$table->foreignId('plan_id')->index()->nullable();
|
||||
$table->foreignId('benefit_id')->index()->nullable();
|
||||
|
||||
$table->string('status');
|
||||
|
||||
$table->dateTime('requested_at')->nullable();
|
||||
$table->unsignedBigInteger('requested_by')->nullable()->index();
|
||||
// $table->dateTime('requested_at')->nullable();
|
||||
// $table->unsignedBigInteger('requested_by')->nullable()->index();
|
||||
|
||||
$table->dateTime('received_at')->nullable();
|
||||
$table->unsignedBigInteger('received_by')->nullable()->index();
|
||||
// $table->dateTime('received_at')->nullable();
|
||||
// $table->unsignedBigInteger('received_by')->nullable()->index();
|
||||
|
||||
$table->dateTime('approved_at')->nullable();
|
||||
$table->unsignedBigInteger('approved_by')->nullable()->index();
|
||||
// $table->dateTime('approved_at')->nullable();
|
||||
// $table->unsignedBigInteger('approved_by')->nullable()->index();
|
||||
|
||||
$table->dateTime('declined')->nullable();
|
||||
$table->unsignedBigInteger('declined_by')->nullable()->index();
|
||||
// $table->dateTime('declined')->nullable();
|
||||
// $table->unsignedBigInteger('declined_by')->nullable()->index();
|
||||
|
||||
$table->dateTime('paid_at')->nullable();
|
||||
$table->unsignedBigInteger('paid_by')->nullable()->index();
|
||||
// $table->dateTime('paid_at')->nullable();
|
||||
// $table->unsignedBigInteger('paid_by')->nullable()->index();
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('status_histories', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->morphs('statusable');
|
||||
$table->string('status');
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
$table->unsignedBigInteger('created_by')->nullable()->index();
|
||||
$table->unsignedBigInteger('updated_by')->nullable()->index();
|
||||
$table->unsignedBigInteger('deleted_by')->nullable()->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('status_histories');
|
||||
}
|
||||
};
|
||||
@@ -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.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('claim_diagnosis', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('claim_id');
|
||||
$table->string('type')->comment('primary, secondary');
|
||||
$table->foreignId('diagnosis_id')->nullable();
|
||||
$table->string('note')->nullable();
|
||||
$table->text('description')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
$table->unsignedBigInteger('created_by')->nullable()->index();
|
||||
$table->unsignedBigInteger('updated_by')->nullable()->index();
|
||||
$table->unsignedBigInteger('deleted_by')->nullable()->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('claim_diagnosis');
|
||||
}
|
||||
};
|
||||
@@ -15,6 +15,7 @@ use App\Models\Unit;
|
||||
use Box\Spout\Reader\Common\Creator\ReaderEntityFactory;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Str;
|
||||
|
||||
class DrugSeeder extends Seeder
|
||||
{
|
||||
@@ -25,6 +26,12 @@ class DrugSeeder extends Seeder
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
Drug::truncate();
|
||||
Organization::where('type', 'manufacturer')->delete();
|
||||
Ingredient::truncate();
|
||||
DrugComposition::truncate();
|
||||
DrugCategory::truncate();
|
||||
|
||||
$file_path = resource_path('files/daftar_masteritem_ccp_14-06-2022.xlsx');
|
||||
$reader = ReaderEntityFactory::createReaderFromFile($file_path);
|
||||
$reader->open($file_path);
|
||||
@@ -69,12 +76,13 @@ class DrugSeeder extends Seeder
|
||||
'name' => $row_data['brand']
|
||||
]) : null;
|
||||
|
||||
$manufacturerCode = 'MAN'.str_pad(Str::initials($row_data['pabrikan']), 10, "0", STR_PAD_LEFT);
|
||||
$manufacturer = Organization::firstOrCreate([
|
||||
'name' => $row_data['pabrikan']
|
||||
'code' => $manufacturerCode
|
||||
], [
|
||||
'name' => $row_data['pabrikan'],
|
||||
'type' => 'manufacturer',
|
||||
'code' => $row_data['pabrikan']
|
||||
'code' => $manufacturerCode
|
||||
]);
|
||||
|
||||
if (in_array($row_data['golongan'], ['VITAMINS & MINERALS', 'NUTRITIONS'])) {
|
||||
|
||||
Reference in New Issue
Block a user