- 한 화면에서 기간·품목구분(봉투/음식물/폐기물)·집계방식·표시컬럼 선택, 제목 지정 후 조회/인쇄 - 컬럼 13종 선택, 상세/품목별 집계 지원, 실판매(bag_sale) 기준 - 계정별(mb_idx) 프리셋 저장/불러오기/삭제 (report_preset 테이블) - report_preset 테이블 없으면 프리셋만 비활성, 리포트는 정상 동작 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
524 B
PHP
22 lines
524 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ReportPresetModel extends Model
|
|
{
|
|
protected $table = 'report_preset';
|
|
protected $primaryKey = 'rp_idx';
|
|
protected $returnType = 'object';
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'rp_regdate';
|
|
protected $updatedField = 'rp_updated';
|
|
protected $allowedFields = [
|
|
'rp_lg_idx', 'rp_mb_idx', 'rp_name', 'rp_title',
|
|
'rp_category', 'rp_mode', 'rp_columns',
|
|
];
|
|
}
|