워커 수정
This commit is contained in:
@@ -225,10 +225,8 @@ $usr_nm = session('usr_nm');
|
||||
<select name="rcpt_stat1" class="form-select form-select-sm">
|
||||
|
||||
<option value="">선택</option>
|
||||
<?php foreach ($codes as $c): ?>
|
||||
<?php if ($c['category'] === "STEP_VERIFICATION"): ?>
|
||||
<option value="<?= $c['cd'] ?>"><?= $c['cd_nm'] ?></option>
|
||||
<?php endif; ?>
|
||||
<?php foreach (($codes['STEP_VERIFICATION']['items'] ?? []) as $cd => $cdNm): ?>
|
||||
<option value="<?= $cd ?>"><?= $cdNm ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<!-- <select name="rcpt_stat2" id="srcGugun" class="form-select form-select-sm">
|
||||
@@ -244,10 +242,8 @@ $usr_nm = session('usr_nm');
|
||||
<label class="form-label mb-1">거래구분</label>
|
||||
<select class="form-select form-select-sm" name="rcpt_product_info1">
|
||||
<option value="">전체</option>
|
||||
<?php foreach ($codes as $c): ?>
|
||||
<?php if ($c['category'] === "NHN_DEAL_TYPE"): ?>
|
||||
<option value="<?= $c['cd'] ?>"><?= $c['cd_nm'] ?></option>
|
||||
<?php endif; ?>
|
||||
<?php foreach (($codes['NHN_DEAL_TYPE']['items'] ?? []) as $cd => $cdNm): ?>
|
||||
<option value="<?= $cdNm ?>"><?= $cdNm ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
@@ -283,10 +279,8 @@ $usr_nm = session('usr_nm');
|
||||
<label class="form-label mb-1">CP ID</label>
|
||||
<select class="form-select form-select-sm" name="rcpt_cpid">
|
||||
<option value="">전체</option>
|
||||
<?php foreach ($codes as $c): ?>
|
||||
<?php if ($c['category'] === "CP_ID"): ?>
|
||||
<option value="<?= $c['cd'] ?>"><?= $c['cd_nm'] ?></option>
|
||||
<?php endif; ?>
|
||||
<?php foreach (($codes['CP_ID']['items'] ?? []) as $cd => $cdNm): ?>
|
||||
<option value="<?= $cd ?>"><?= $cdNm ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
@@ -295,10 +289,8 @@ $usr_nm = session('usr_nm');
|
||||
<label class="form-label mb-1">매물종류</label>
|
||||
<select class="form-select form-select-sm" name="rcpt_product">
|
||||
<option value="">전체</option>
|
||||
<?php foreach ($codes as $c): ?>
|
||||
<?php if ($c['category'] === "ARTICLE_TYPE"): ?>
|
||||
<option value="<?= $c['cd'] ?>"><?= $c['cd_nm'] ?></option>
|
||||
<?php endif; ?>
|
||||
<?php foreach (($codes['ARTICLE_TYPE']['items'] ?? []) as $cd => $cdNm): ?>
|
||||
<option value="<?= $cd ?>"><?= $cdNm ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
@@ -452,13 +444,12 @@ $usr_nm = session('usr_nm');
|
||||
const bonbuArr = <?= json_encode($bonbu, JSON_UNESCAPED_UNICODE); ?>;
|
||||
const teamArr = <?= json_encode($team, JSON_UNESCAPED_UNICODE); ?>;
|
||||
const userArr = <?= json_encode($user, JSON_UNESCAPED_UNICODE); ?>;
|
||||
<?php if (isset($srchUser) && !empty($srchUser)): ?>
|
||||
const srchUser = <?= json_encode($srchUser, JSON_UNESCAPED_UNICODE); ?>;
|
||||
<?php else: ?>
|
||||
const srchUser = null;
|
||||
<?php endif; ?>
|
||||
const srchUser = <?= json_encode((!empty($srchUser) ? $srchUser : null), JSON_UNESCAPED_UNICODE); ?>;
|
||||
const sBonbu = "<?= $sBonbu ?? '' ?>";
|
||||
const sTeam = "<?= $sTeanm ?? '' ?>";
|
||||
const sTeam = "<?= $sTeam ?? '' ?>";
|
||||
const userColumns = <?= ($usr_level != '45')
|
||||
? "[{ data: 'dept_nm' }, { data: 'usr_nm' }]"
|
||||
: "[]" ?>;
|
||||
|
||||
const date = new Date();
|
||||
var table;
|
||||
@@ -703,19 +694,15 @@ $usr_nm = session('usr_nm');
|
||||
{ data: null, render: fn_agent_render , className: 'tw-150' },
|
||||
{ data: null, render: fn_addr_render },
|
||||
{ data: null, render: fn_prd_render },
|
||||
{ data: 'rcpt_product_info1' },
|
||||
<?php if ($usr_level != "45"):
|
||||
echo "{ data: 'dept_nm' },
|
||||
{ data: 'usr_nm' },";
|
||||
endif; ?>
|
||||
{ data: 'rcpt_product_info1' }
|
||||
].concat(userColumns, [
|
||||
{ data: 'parcel_out_yn' },
|
||||
{ data: 'conf_img_yn' },
|
||||
{ data: 'exp_movie_yn' },
|
||||
{ data: 'ground_plan_yn' },
|
||||
{ data: 'ground_plan' },
|
||||
{ data: 'exp_spc_yn' },
|
||||
|
||||
],
|
||||
{ data: 'exp_spc_yn' }
|
||||
]),
|
||||
// 옵션들 예시
|
||||
destroy: true,
|
||||
deferRender: true,
|
||||
|
||||
Reference in New Issue
Block a user