Menambahkan fitur pengelolaan data stmt_entry_detail untuk integrasi transaksi dengan detail yang lebih lengkap. Perubahan yang dilakukan: - Membuat migrasi create_stmt_entry_detail_table dengan struktur field sesuai kebutuhan bisnis - Menambahkan index pada kolom penting untuk meningkatkan performa query - Membuat model StmtEntryDetail dengan relasi ke: - Account - TempFundsTransfer - TempTransaction - Teller - DataCapture - TempArrangement - Mengimplementasikan $fillable dan $casts sesuai struktur tabel - Menambahkan relasi untuk memudahkan integrasi antar modul - Membuat job ProcessStmtEntryDetailDataJob untuk memproses file CSV dengan batch processing - Mengimplementasikan chunking untuk menangani file besar secara efisien - Membersihkan trans_reference dari karakter tidak valid sebelum penyimpanan - Menggunakan updateOrCreate untuk mencegah duplikasi primary key - Menggunakan database transaction untuk menjaga konsistensi data - Menambahkan logging komprehensif untuk monitoring dan debugging - Mengimplementasikan error handling yang robust untuk menghindari job failure tanpa informasi - Memastikan penggunaan resource memory tetap optimal saat memproses data besar - Menambahkan case baru di MigrasiController untuk memproses stmt_entry_detail - Konsisten dengan pattern migrasi data yang sudah ada di sistem Tujuan perubahan: - Menyediakan sistem import dan pengolahan data stmt_entry_detail dengan proses yang aman dan efisien - Memudahkan integrasi transaksi dengan detail tambahan di modul Webstatement - Menjamin integritas data dengan penggunaan transaction, logging, dan error handling yang komprehensif
114 lines
2.5 KiB
PHP
114 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Modules\Webstatement\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class StmtEntryDetail extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'stmt_entry_detail';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'stmt_entry_id',
|
|
'account_number',
|
|
'company_code',
|
|
'amount_lcy',
|
|
'transaction_code',
|
|
'narrative',
|
|
'product_category',
|
|
'value_date',
|
|
'amount_fcy',
|
|
'exchange_rate',
|
|
'trans_reference',
|
|
'booking_date',
|
|
'stmt_no',
|
|
'date_time',
|
|
'currency',
|
|
'crf_type',
|
|
'consol_key',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* Relasi ke model Account
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function account()
|
|
{
|
|
return $this->belongsTo(Account::class, 'account_number', 'account_number');
|
|
}
|
|
|
|
/**
|
|
* Relasi ke model TempFundsTransfer
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function ft()
|
|
{
|
|
return $this->belongsTo(TempFundsTransfer::class, 'trans_reference', 'ref_no');
|
|
}
|
|
|
|
/**
|
|
* Relasi ke model TempTransaction
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function transaction()
|
|
{
|
|
return $this->belongsTo(TempTransaction::class, 'transaction_code', 'transaction_code');
|
|
}
|
|
|
|
/**
|
|
* Relasi ke model Teller
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function tt()
|
|
{
|
|
return $this->belongsTo(Teller::class, 'trans_reference', 'id_teller');
|
|
}
|
|
|
|
/**
|
|
* Relasi ke model DataCapture
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function dc()
|
|
{
|
|
return $this->belongsTo(DataCapture::class, 'trans_reference', 'id');
|
|
}
|
|
|
|
/**
|
|
* Relasi ke model TempArrangement
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function aa()
|
|
{
|
|
return $this->belongsTo(TempArrangement::class, 'trans_reference', 'arrangement_id');
|
|
}
|
|
}
|