feat: enhance order sales inventory workflows
This commit is contained in:
@@ -5,6 +5,7 @@ declare(strict_types=1);
|
||||
namespace App\Controllers;
|
||||
|
||||
use CodeIgniter\Database\Exceptions\DatabaseException;
|
||||
use CodeIgniter\HTTP\RedirectResponse;
|
||||
use App\Models\BagInventoryModel;
|
||||
use App\Models\BagIssueModel;
|
||||
use App\Models\BagOrderModel;
|
||||
@@ -19,6 +20,7 @@ use App\Models\PackagingUnitModel;
|
||||
use App\Models\SalesAgencyModel;
|
||||
use App\Models\ShopOrderModel;
|
||||
use App\Models\DesignatedShopModel;
|
||||
use App\Models\LocalGovernmentModel;
|
||||
use Config\Roles;
|
||||
|
||||
class Bag extends BaseController
|
||||
@@ -41,30 +43,303 @@ class Bag extends BaseController
|
||||
}
|
||||
|
||||
// ──────────────────────────────────────────────
|
||||
// 기본정보관리
|
||||
// 기본정보관리 (단가·포장 단위 진입 허브)
|
||||
// ──────────────────────────────────────────────
|
||||
public function basicInfo(): string
|
||||
{
|
||||
$lgIdx = $this->lgIdx();
|
||||
$data = [
|
||||
'bagPrices' => [],
|
||||
'packagingUnits' => [],
|
||||
];
|
||||
return $this->render('기본정보관리', 'bag/basic_info', []);
|
||||
}
|
||||
|
||||
if ($lgIdx) {
|
||||
try {
|
||||
$data['bagPrices'] = model(BagPriceModel::class)->where('bp_lg_idx', $lgIdx)->orderBy('bp_bag_code', 'ASC')->findAll();
|
||||
} catch (DatabaseException $e) {
|
||||
log_message('error', '[basicInfo] bag_price 조회 실패(테이블 미생성 등): ' . $e->getMessage());
|
||||
/** 봉투 단가 조회 (사이트) — 기간·봉투구분·봉투코드 필터, 적용기간 겹침, 페이징·인쇄 */
|
||||
public function prices(): string|RedirectResponse
|
||||
{
|
||||
helper('admin');
|
||||
if ($this->request->is('post')) {
|
||||
$post = $this->request->getPost();
|
||||
$pick = static function (array $src, string $key): ?string {
|
||||
if (! array_key_exists($key, $src)) {
|
||||
return null;
|
||||
}
|
||||
$v = $src[$key];
|
||||
if ($v === null || is_array($v)) {
|
||||
return null;
|
||||
}
|
||||
$s = trim((string) $v);
|
||||
|
||||
return $s === '' ? null : $s;
|
||||
};
|
||||
session()->setFlashdata('bag_prices_filter', [
|
||||
'start_y' => $pick($post, 'start_y'),
|
||||
'start_m' => $pick($post, 'start_m'),
|
||||
'start_d' => $pick($post, 'start_d'),
|
||||
'end_y' => $pick($post, 'end_y'),
|
||||
'end_m' => $pick($post, 'end_m'),
|
||||
'end_d' => $pick($post, 'end_d'),
|
||||
'bag_kind_e' => $pick($post, 'bag_kind_e'),
|
||||
'bag_code' => $pick($post, 'bag_code'),
|
||||
]);
|
||||
|
||||
return redirect()->to(site_url('bag/prices'));
|
||||
}
|
||||
|
||||
$lgIdx = $this->lgIdx();
|
||||
$bagPrices = [];
|
||||
|
||||
$get = $this->request->getGet();
|
||||
$flash = session()->getFlashdata('bag_prices_filter');
|
||||
|
||||
$readSrc = static function (array $src, string $key): ?string {
|
||||
if (! array_key_exists($key, $src)) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
$data['packagingUnits'] = model(PackagingUnitModel::class)->where('pu_lg_idx', $lgIdx)->orderBy('pu_bag_code', 'ASC')->findAll();
|
||||
} catch (DatabaseException $e) {
|
||||
log_message('error', '[basicInfo] packaging_unit 조회 실패: ' . $e->getMessage());
|
||||
$v = $src[$key];
|
||||
if ($v === null || is_array($v)) {
|
||||
return null;
|
||||
}
|
||||
$s = trim((string) $v);
|
||||
|
||||
return $s === '' ? null : $s;
|
||||
};
|
||||
|
||||
$filterKeys = [
|
||||
'start_y', 'start_m', 'start_d',
|
||||
'end_y', 'end_m', 'end_d',
|
||||
'bag_kind_e', 'bag_code',
|
||||
'start_date', 'end_date',
|
||||
];
|
||||
$hasExplicitGetFilter = false;
|
||||
foreach ($filterKeys as $fk) {
|
||||
$v = $get[$fk] ?? null;
|
||||
if ($v !== null && ! is_array($v) && trim((string) $v) !== '') {
|
||||
$hasExplicitGetFilter = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return $this->render('기본정보관리', 'bag/basic_info', $data);
|
||||
$src = [];
|
||||
if ($hasExplicitGetFilter) {
|
||||
$src = $get;
|
||||
} elseif (is_array($flash)) {
|
||||
$src = $flash;
|
||||
}
|
||||
|
||||
$sy = $readSrc($src, 'start_y');
|
||||
$sm = $readSrc($src, 'start_m');
|
||||
$sd = $readSrc($src, 'start_d');
|
||||
$ey = $readSrc($src, 'end_y');
|
||||
$em = $readSrc($src, 'end_m');
|
||||
$ed = $readSrc($src, 'end_d');
|
||||
|
||||
$startDate = null;
|
||||
if ($sy !== null && $sy !== '' && $sm !== null && $sm !== '' && $sd !== null && $sd !== '') {
|
||||
$startDate = parse_ymd_from_triple($sy, $sm, $sd);
|
||||
}
|
||||
if ($startDate === null) {
|
||||
$g = $readSrc($src, 'start_date');
|
||||
$startDate = ($g !== null && $g !== '') ? $g : null;
|
||||
}
|
||||
|
||||
$endDate = null;
|
||||
if ($ey !== null && $ey !== '' && $em !== null && $em !== '' && $ed !== null && $ed !== '') {
|
||||
$endDate = parse_ymd_from_triple($ey, $em, $ed);
|
||||
}
|
||||
if ($endDate === null) {
|
||||
$g = $readSrc($src, 'end_date');
|
||||
$endDate = ($g !== null && $g !== '') ? $g : null;
|
||||
}
|
||||
|
||||
$startParts = ['y' => '', 'm' => '', 'd' => ''];
|
||||
$endParts = ['y' => '', 'm' => '', 'd' => ''];
|
||||
if ($startDate !== null && preg_match('/^(\d{4})-(\d{2})-(\d{2})$/', $startDate, $m)) {
|
||||
$startParts = ['y' => $m[1], 'm' => (int) $m[2], 'd' => (int) $m[3]];
|
||||
} elseif ($sy !== null && $sm !== null && $sd !== null && $sy !== '' && $sm !== '' && $sd !== '') {
|
||||
$iy = (int) $sy;
|
||||
$im = (int) $sm;
|
||||
$id = (int) $sd;
|
||||
if ($iy >= 1000 && $iy <= 9999 && $im >= 1 && $im <= 12 && $id >= 1 && $id <= 31) {
|
||||
$startParts = ['y' => (string) $iy, 'm' => $im, 'd' => $id];
|
||||
}
|
||||
}
|
||||
if ($endDate !== null && preg_match('/^(\d{4})-(\d{2})-(\d{2})$/', $endDate, $m)) {
|
||||
$endParts = ['y' => $m[1], 'm' => (int) $m[2], 'd' => (int) $m[3]];
|
||||
} elseif ($ey !== null && $em !== null && $ed !== null && $ey !== '' && $em !== '' && $ed !== '') {
|
||||
$iy = (int) $ey;
|
||||
$im = (int) $em;
|
||||
$id = (int) $ed;
|
||||
if ($iy >= 1000 && $iy <= 9999 && $im >= 1 && $im <= 12 && $id >= 1 && $id <= 31) {
|
||||
$endParts = ['y' => (string) $iy, 'm' => $im, 'd' => $id];
|
||||
}
|
||||
}
|
||||
|
||||
$dateYearMin = (int) date('Y') - 12;
|
||||
$dateYearMax = (int) date('Y') + 2;
|
||||
|
||||
$bagKindE = $readSrc($src, 'bag_kind_e');
|
||||
$bagCode = $readSrc($src, 'bag_code');
|
||||
$pager = null;
|
||||
$bagCodes = [];
|
||||
$bagKindOpts = [];
|
||||
$printLines = [];
|
||||
$printLgName = '';
|
||||
|
||||
if ($lgIdx !== null) {
|
||||
try {
|
||||
$priceModel = model(BagPriceModel::class);
|
||||
$builder = $priceModel->where('bp_lg_idx', $lgIdx);
|
||||
|
||||
if (($startDate !== null && $startDate !== '') || ($endDate !== null && $endDate !== '')) {
|
||||
$qStart = ($startDate !== null && $startDate !== '') ? $startDate : $endDate;
|
||||
$qEnd = ($endDate !== null && $endDate !== '') ? $endDate : $startDate;
|
||||
if (strcmp((string) $qStart, (string) $qEnd) > 0) {
|
||||
[$qStart, $qEnd] = [$qEnd, $qStart];
|
||||
}
|
||||
$builder->where('bp_start_date <=', $qEnd);
|
||||
$builder->groupStart()
|
||||
->where('bp_end_date IS NULL')
|
||||
->orWhere('bp_end_date >=', $qStart)
|
||||
->groupEnd();
|
||||
}
|
||||
|
||||
if ($bagKindE !== null && $bagKindE !== '') {
|
||||
$ek = model(CodeKindModel::class)->where('ck_code', 'E')->first();
|
||||
if ($ek) {
|
||||
$eDetail = model(CodeDetailModel::class)
|
||||
->where('cd_ck_idx', (int) $ek->ck_idx)
|
||||
->where('cd_code', $bagKindE)
|
||||
->where('cd_state', 1)
|
||||
->first();
|
||||
if ($eDetail !== null) {
|
||||
$builder->like('bp_bag_code', (string) $bagKindE, 'after');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($bagCode !== null && $bagCode !== '') {
|
||||
$ok = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
if ($ok) {
|
||||
$oDetail = model(CodeDetailModel::class)->findResolvedByKindAndCode((int) $ok->ck_idx, (string) $bagCode, $lgIdx);
|
||||
if ($oDetail !== null) {
|
||||
$builder->where('bp_bag_code', $bagCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$bagPrices = $builder->orderBy('bp_bag_code', 'ASC')->orderBy('bp_start_date', 'DESC')->paginate(20);
|
||||
|
||||
$queryForPager = [];
|
||||
$tripleS = $sy !== null && $sy !== '' && $sm !== null && $sm !== '' && $sd !== null && $sd !== '';
|
||||
$tripleE = $ey !== null && $ey !== '' && $em !== null && $em !== '' && $ed !== null && $ed !== '';
|
||||
if ($tripleS) {
|
||||
$queryForPager['start_y'] = $sy;
|
||||
$queryForPager['start_m'] = $sm;
|
||||
$queryForPager['start_d'] = $sd;
|
||||
} else {
|
||||
$legacyS = $readSrc($src, 'start_date');
|
||||
if ($legacyS !== null) {
|
||||
$queryForPager['start_date'] = $legacyS;
|
||||
}
|
||||
}
|
||||
if ($tripleE) {
|
||||
$queryForPager['end_y'] = $ey;
|
||||
$queryForPager['end_m'] = $em;
|
||||
$queryForPager['end_d'] = $ed;
|
||||
} else {
|
||||
$legacyE = $readSrc($src, 'end_date');
|
||||
if ($legacyE !== null) {
|
||||
$queryForPager['end_date'] = $legacyE;
|
||||
}
|
||||
}
|
||||
if ($bagKindE !== null && $bagKindE !== '') {
|
||||
$queryForPager['bag_kind_e'] = $bagKindE;
|
||||
}
|
||||
if ($bagCode !== null && $bagCode !== '') {
|
||||
$queryForPager['bag_code'] = $bagCode;
|
||||
}
|
||||
$queryForPager = array_filter(
|
||||
$queryForPager,
|
||||
static fn ($v) => $v !== null && $v !== ''
|
||||
);
|
||||
$pagerPath = site_url('bag/prices');
|
||||
if ($queryForPager !== []) {
|
||||
$pagerPath .= '?' . http_build_query($queryForPager);
|
||||
}
|
||||
$priceModel->pager->setPath($pagerPath);
|
||||
$pager = $priceModel->pager;
|
||||
|
||||
$kindO = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kindO
|
||||
? model(CodeDetailModel::class)->getByKind((int) $kindO->ck_idx, true, $lgIdx)
|
||||
: [];
|
||||
|
||||
$kindE = model(CodeKindModel::class)->where('ck_code', 'E')->first();
|
||||
$bagKindOpts = $kindE
|
||||
? model(CodeDetailModel::class)->getByKind((int) $kindE->ck_idx, true, null)
|
||||
: [];
|
||||
|
||||
$lgRow = model(LocalGovernmentModel::class)->find($lgIdx);
|
||||
$printLgName = $lgRow !== null ? $lgRow->lg_name : '';
|
||||
} catch (DatabaseException $e) {
|
||||
log_message('error', '[prices] bag_price 조회 실패: ' . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
if (($startDate !== null && $startDate !== '') || ($endDate !== null && $endDate !== '')) {
|
||||
$qs = ($startDate !== null && $startDate !== '') ? $startDate : $endDate;
|
||||
$qe = ($endDate !== null && $endDate !== '') ? $endDate : $startDate;
|
||||
if (strcmp((string) $qs, (string) $qe) > 0) {
|
||||
[$qs, $qe] = [$qe, $qs];
|
||||
}
|
||||
$printLines[] = '조회기간(적용기간 겹침): ' . format_ymd_korean($qs) . ' ~ ' . format_ymd_korean($qe);
|
||||
}
|
||||
if ($bagKindE !== null && $bagKindE !== '') {
|
||||
foreach ($bagKindOpts as $cd) {
|
||||
if ((string) $cd->cd_code === (string) $bagKindE) {
|
||||
$printLines[] = '봉투구분: ' . $cd->cd_name . ' (' . $bagKindE . ')';
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($bagCode !== null && $bagCode !== '') {
|
||||
$printLines[] = '봉투코드: ' . $bagCode;
|
||||
}
|
||||
|
||||
$viewData = [
|
||||
'lgIdx' => $lgIdx,
|
||||
'bagPrices' => $bagPrices,
|
||||
'pager' => $pager,
|
||||
'startDate' => $startDate,
|
||||
'endDate' => $endDate,
|
||||
'startParts' => $startParts,
|
||||
'endParts' => $endParts,
|
||||
'dateYearMin' => $dateYearMin,
|
||||
'dateYearMax' => $dateYearMax,
|
||||
'bag_kind_e' => $bagKindE,
|
||||
'bag_code' => $bagCode,
|
||||
'bag_codes' => $bagCodes,
|
||||
'bag_kind_options' => $bagKindOpts,
|
||||
'printExtraLines' => $printLines,
|
||||
];
|
||||
if ($printLgName !== '') {
|
||||
$viewData['printLgName'] = $printLgName;
|
||||
}
|
||||
|
||||
return $this->render('봉투 단가', 'bag/prices', $viewData);
|
||||
}
|
||||
|
||||
/** 포장 단위 조회 (사이트) */
|
||||
public function packagingUnits(): string
|
||||
{
|
||||
$lgIdx = $this->lgIdx();
|
||||
$packagingUnits = [];
|
||||
if ($lgIdx) {
|
||||
try {
|
||||
$packagingUnits = model(PackagingUnitModel::class)->where('pu_lg_idx', $lgIdx)->orderBy('pu_bag_code', 'ASC')->findAll();
|
||||
} catch (DatabaseException $e) {
|
||||
log_message('error', '[packagingUnits] packaging_unit 조회 실패: ' . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
return $this->render('포장 단위', 'bag/packaging_units', ['packagingUnits' => $packagingUnits]);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -75,16 +350,20 @@ class Bag extends BaseController
|
||||
$kindModel = model(CodeKindModel::class);
|
||||
$detailModel = model(CodeDetailModel::class);
|
||||
$kinds = $kindModel->orderBy('ck_code', 'ASC')->findAll();
|
||||
$lgIdx = $this->lgIdx();
|
||||
$countMap = [];
|
||||
foreach ($kinds as $row) {
|
||||
// countAllResults() 기본값(true)으로 매번 빌더 초기화 — false 시 where 누적되어 2번째부터 0건으로 보임
|
||||
$countMap[$row->ck_idx] = (int) $detailModel->where('cd_ck_idx', $row->ck_idx)->countAllResults();
|
||||
$countMap[$row->ck_idx] = (int) $detailModel->where('cd_ck_idx', $row->ck_idx)
|
||||
->filterByTenantScope($lgIdx)
|
||||
->countAllResults();
|
||||
}
|
||||
|
||||
$level = (int) session()->get('mb_level');
|
||||
|
||||
return $this->render('기본코드관리', 'bag/code_kinds', [
|
||||
'codeKinds' => $kinds,
|
||||
'countMap' => $countMap,
|
||||
'canManage' => Roles::canManageCodeMaster((int) session()->get('mb_level')),
|
||||
'codeKinds' => $kinds,
|
||||
'countMap' => $countMap,
|
||||
'canManageKinds' => Roles::canManageCodeKindMaster($level),
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -100,17 +379,31 @@ class Bag extends BaseController
|
||||
return redirect()->to(site_url('bag/code-kinds'))->with('error', '코드 종류를 찾을 수 없습니다.');
|
||||
}
|
||||
|
||||
$list = $detailModel->where('cd_ck_idx', $ckIdx)->orderBy('cd_sort', 'ASC')->orderBy('cd_idx', 'ASC')->paginate(20);
|
||||
$lgIdx = $this->lgIdx();
|
||||
$list = $detailModel->where('cd_ck_idx', $ckIdx)
|
||||
->filterByTenantScope($lgIdx)
|
||||
->orderBy('cd_sort', 'ASC')
|
||||
->orderBy('cd_idx', 'ASC')
|
||||
->paginate(20);
|
||||
$pager = $detailModel->pager;
|
||||
|
||||
$canManage = Roles::canManageCodeMaster((int) session()->get('mb_level'));
|
||||
$title = ($canManage ? '세부코드 관리' : '세부코드 조회') . ' — ' . $kind->ck_name . ' (' . $kind->ck_code . ')';
|
||||
helper('admin');
|
||||
$level = (int) session()->get('mb_level');
|
||||
$adminLg = admin_effective_lg_idx();
|
||||
$canManage = Roles::canManageCodeMaster($level);
|
||||
$rowCanEdit = [];
|
||||
foreach ($list as $row) {
|
||||
$rowCanEdit[$row->cd_idx] = Roles::canEditCodeDetailRow($level, $row, $adminLg);
|
||||
}
|
||||
|
||||
$title = ($canManage ? '세부코드 관리' : '세부코드 조회') . ' — ' . $kind->ck_name . ' (' . $kind->ck_code . ')';
|
||||
|
||||
return $this->render($title, 'bag/code_details', [
|
||||
'kind' => $kind,
|
||||
'list' => $list,
|
||||
'pager' => $pager,
|
||||
'canManage' => $canManage,
|
||||
'kind' => $kind,
|
||||
'list' => $list,
|
||||
'pager' => $pager,
|
||||
'canManage' => $canManage,
|
||||
'rowCanEdit' => $rowCanEdit,
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -372,8 +665,8 @@ class Bag extends BaseController
|
||||
// --- 불출 등록 ---
|
||||
public function issueCreate(): string
|
||||
{
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->where('cd_ck_idx', $kind->ck_idx)->where('cd_state', 1)->orderBy('cd_sort')->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->getByKind((int) $kind->ck_idx, true, $this->lgIdx()) : [];
|
||||
return $this->render('불출 처리', 'bag/create_bag_issue', compact('bagCodes'));
|
||||
}
|
||||
|
||||
@@ -403,8 +696,10 @@ class Bag extends BaseController
|
||||
{
|
||||
helper('admin');
|
||||
$lgIdx = $this->lgIdx();
|
||||
$companies = $lgIdx ? model(CompanyModel::class)->where('cp_lg_idx', $lgIdx)->where('cp_type', 'manufacturer')->where('cp_state', 1)->findAll() : [];
|
||||
$agencies = $lgIdx ? model(SalesAgencyModel::class)->where('sa_lg_idx', $lgIdx)->where('sa_state', 1)->findAll() : [];
|
||||
$companies = $lgIdx
|
||||
? model(CompanyModel::class)->where('cp_lg_idx', $lgIdx)->whereIn('cp_type', ['제작업체', 'manufacturer'])->where('cp_state', 1)->findAll()
|
||||
: [];
|
||||
$agencies = $lgIdx ? model(SalesAgencyModel::class)->where('sa_lg_idx', $lgIdx)->orderForDisplay()->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->where('cd_ck_idx', $kind->ck_idx)->where('cd_state', 1)->orderBy('cd_sort')->findAll() : [];
|
||||
return $this->render('발주 등록', 'bag/create_bag_order', compact('companies', 'agencies', 'bagCodes'));
|
||||
@@ -421,6 +716,26 @@ class Bag extends BaseController
|
||||
return redirect()->to(site_url('bag/purchase-inbound'))->with('success', '발주 등록되었습니다.');
|
||||
}
|
||||
|
||||
public function orderCancel(int $id)
|
||||
{
|
||||
helper('admin');
|
||||
$lgIdx = $this->lgIdx();
|
||||
if (!$lgIdx) {
|
||||
return redirect()->to(site_url('bag/purchase-inbound'))->with('error', '지자체를 확인할 수 없습니다.');
|
||||
}
|
||||
$orderModel = model(BagOrderModel::class);
|
||||
$order = $orderModel->find($id);
|
||||
if (!$order || (int) $order->bo_lg_idx !== $lgIdx) {
|
||||
return redirect()->to(site_url('bag/purchase-inbound'))->with('error', '발주를 찾을 수 없습니다.');
|
||||
}
|
||||
$before = (array) $order;
|
||||
$orderModel->update($id, ['bo_status' => 'cancelled', 'bo_moddate' => date('Y-m-d H:i:s')]);
|
||||
helper('audit');
|
||||
audit_log('update', 'bag_order', $id, $before, ['bo_status' => 'cancelled']);
|
||||
|
||||
return redirect()->to(site_url('bag/purchase-inbound'))->with('success', '발주가 취소되었습니다.');
|
||||
}
|
||||
|
||||
// --- 입고 처리 ---
|
||||
public function receivingCreate(): string
|
||||
{
|
||||
@@ -447,8 +762,8 @@ class Bag extends BaseController
|
||||
helper('admin');
|
||||
$lgIdx = $this->lgIdx();
|
||||
$shops = $lgIdx ? model(DesignatedShopModel::class)->where('ds_lg_idx', $lgIdx)->where('ds_state', 1)->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->where('cd_ck_idx', $kind->ck_idx)->where('cd_state', 1)->orderBy('cd_sort')->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->getByKind((int) $kind->ck_idx, true, $lgIdx) : [];
|
||||
return $this->render('판매 등록', 'bag/create_bag_sale', compact('shops', 'bagCodes'));
|
||||
}
|
||||
|
||||
@@ -469,8 +784,8 @@ class Bag extends BaseController
|
||||
helper('admin');
|
||||
$lgIdx = $this->lgIdx();
|
||||
$shops = $lgIdx ? model(DesignatedShopModel::class)->where('ds_lg_idx', $lgIdx)->where('ds_state', 1)->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->where('cd_ck_idx', $kind->ck_idx)->where('cd_state', 1)->orderBy('cd_sort')->findAll() : [];
|
||||
$kind = model(CodeKindModel::class)->where('ck_code', 'O')->first();
|
||||
$bagCodes = $kind ? model(CodeDetailModel::class)->getByKind((int) $kind->ck_idx, true, $lgIdx) : [];
|
||||
return $this->render('주문 접수', 'bag/create_shop_order', compact('shops', 'bagCodes'));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user