- 4개 테이블 생성 (sales_agency, manager, company, free_recipient) - 4개 Model + 4개 Controller + 12개 View - 담당자: 소속(S)/직위(T) 코드 연동 - 업체: 협회/제작업체/회수업체 유형 분류 - 무료대상자: 무상지급구분(H)/동코드(D) 연동 - 모두 지자체별 멀티테넌시 적용 - 24개 라우트 추가 - E2E 테스트 9개 전체 통과 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
49 lines
2.8 KiB
PHP
49 lines
2.8 KiB
PHP
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
|
|
<span class="text-sm font-bold text-gray-700">업체 등록</span>
|
|
</section>
|
|
<div class="border border-gray-300 p-4 mt-2 bg-white max-w-3xl">
|
|
<form action="<?= base_url('admin/companies/store') ?>" method="POST" class="space-y-4">
|
|
<?= csrf_field() ?>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">업체유형 <span class="text-red-500">*</span></label>
|
|
<select class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_type" required>
|
|
<option value="">선택</option>
|
|
<option value="협회" <?= old('cp_type') === '협회' ? 'selected' : '' ?>>협회</option>
|
|
<option value="제작업체" <?= old('cp_type') === '제작업체' ? 'selected' : '' ?>>제작업체</option>
|
|
<option value="회수업체" <?= old('cp_type') === '회수업체' ? 'selected' : '' ?>>회수업체</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">업체명 <span class="text-red-500">*</span></label>
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_name" type="text" value="<?= esc(old('cp_name')) ?>" required/>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">사업자번호</label>
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_biz_no" type="text" value="<?= esc(old('cp_biz_no')) ?>"/>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">대표자</label>
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_rep_name" type="text" value="<?= esc(old('cp_rep_name')) ?>"/>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">전화</label>
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_tel" type="text" value="<?= esc(old('cp_tel')) ?>"/>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
<label class="block text-sm font-bold text-gray-700 w-28">주소</label>
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-96" name="cp_addr" type="text" value="<?= esc(old('cp_addr')) ?>"/>
|
|
</div>
|
|
|
|
<div class="flex gap-2 pt-2">
|
|
<button type="submit" class="bg-btn-search text-white px-6 py-1.5 rounded-sm text-sm shadow hover:opacity-90 transition">등록</button>
|
|
<a href="<?= base_url('admin/companies') ?>" class="bg-gray-200 text-gray-700 px-6 py-1.5 rounded-sm text-sm hover:bg-gray-300 transition">취소</a>
|
|
</div>
|
|
</form>
|
|
</div>
|