Logo
Explore Help
Register Sign In
SamProject/sam-manage
6
0
Fork 0
You've already forked sam-manage
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
Files
622fb92a92a79e27c0656ff04568c5e1babcdbe0
sam-manage/app/Models/Process.php

24 lines
412 B
PHP
Raw Normal View History

feat:문서양식 기본정보 + 결재라인 기능 개선 - 회사명: 생성 시 테넌트 company_name 자동입력 - 분류: select 변경 (수입검사/중간검사/품질검사 + 커스텀) - 수입검사 → 품목 다중선택 (RM, SM 필터) - 품질검사 → 공정 선택 - 결재라인 단계명: text → select (작성/검토/승인/참조) - 작성 단계: (작성자) 표시, user_id=null - 검토/승인/참조: 테넌트 사용자 검색/선택, user_id 저장 - 공정 검색 API, 테넌트 사용자 검색 API 신규 추가 - ItemApiController에 item_type, ids 파라미터 지원 추가 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 10:33:48 +09:00
<?php
namespace App\Models;
use App\Traits\BelongsToTenant;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Process extends Model
{
use BelongsToTenant, SoftDeletes;
protected $fillable = [
'tenant_id',
'process_code',
'process_name',
'is_active',
];
protected $casts = [
'is_active' => 'boolean',
];
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.24.3 Page: 33ms Template: 2ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API