refactor: [절곡] code/lot_no 분리 — 코드 체계와 LOT 번호 분리
- bending_items.code: LOT번호(CP260319) → 코드체계(CP)만 저장 - bending_items.lot_no: 기존 code 값 이관 (LOT 번호) - bending_models.code: 전체코드(GR-KSS01-벽면형-SUS) → 접두사(GR)만 저장 - bending_models.lot_no: 기존 code 값 이관 - unique 제약: code → lot_no로 이동 - BendingCodeService.resolveItem: LIKE → 정확 매칭 - 검색: lot_no 필드 추가 - Swagger 문서 업데이트
This commit is contained in:
@@ -12,7 +12,8 @@
|
||||
/**
|
||||
* 절곡 기초관리 마스터
|
||||
*
|
||||
* code: {제품Code}{종류Code}{YYMMDD} (예: CP260319 = 케이스 점검구)
|
||||
* code: 코드 체계 (제품Code+종류Code, 예: CP = 케이스 점검구)
|
||||
* lot_no: LOT 번호 (code+날짜+일련, 예: CP260319-02)
|
||||
* bending_data: 전개도 JSON 배열 [{no, input, rate, sum, color, aAngle}]
|
||||
*/
|
||||
class BendingItem extends Model
|
||||
@@ -24,6 +25,7 @@ class BendingItem extends Model
|
||||
protected $fillable = [
|
||||
'tenant_id',
|
||||
'code',
|
||||
'lot_no',
|
||||
'legacy_code',
|
||||
'legacy_bending_id',
|
||||
'item_name',
|
||||
|
||||
Reference in New Issue
Block a user