- 시스템 변수 (서명자명, 이메일, 계약제목, 날짜 등) 자동 해석 - 커스텀 변수 정의/관리 (템플릿별 계약금액, 기간 등) - 템플릿 필드 에디터: 변수 관리 + 필드-변수 바인딩 UI - 계약 생성 폼: 템플릿 변수 입력 섹션 추가 - 계약 필드 에디터: 변수 연결 정보 표시 - PdfSignatureService: font_size 반영 렌더링 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models\ESign;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class EsignFieldTemplateItem extends Model
|
|
{
|
|
protected $table = 'esign_field_template_items';
|
|
|
|
protected $fillable = [
|
|
'template_id',
|
|
'signer_order',
|
|
'page_number',
|
|
'position_x',
|
|
'position_y',
|
|
'width',
|
|
'height',
|
|
'field_type',
|
|
'field_label',
|
|
'field_variable',
|
|
'font_size',
|
|
'is_required',
|
|
'sort_order',
|
|
];
|
|
|
|
protected $casts = [
|
|
'signer_order' => 'integer',
|
|
'page_number' => 'integer',
|
|
'position_x' => 'decimal:2',
|
|
'position_y' => 'decimal:2',
|
|
'width' => 'decimal:2',
|
|
'height' => 'decimal:2',
|
|
'font_size' => 'integer',
|
|
'is_required' => 'boolean',
|
|
'sort_order' => 'integer',
|
|
];
|
|
|
|
public function template(): BelongsTo
|
|
{
|
|
return $this->belongsTo(EsignFieldTemplate::class, 'template_id');
|
|
}
|
|
}
|