상세추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-15 16:39:23 +09:00
parent 28b458450c
commit ed39194225
5 changed files with 1631 additions and 1 deletions

View File

@@ -636,7 +636,7 @@ $usr_nm = session('usr_nm');
{ data: null, render: fn_prd_render },
{ data: 'rcpt_product_info1' },
<?php if ($usr_level != "45"): ?>
{ data: 'dept_nm' },
{ data: 'dept_nm' },
{ data: 'usr_nm' },
<?php endif; ?>
{ data: 'parcel_out_yn' },
@@ -657,6 +657,17 @@ $usr_nm = session('usr_nm');
ordering: false,
});
// 테이블 row click
$('#resultList tbody').on('click', 'tr', function (e) {
if ($(e.target).closest('td.dt-no-rowclick').length) return;
const rowData = table.row(this).data();
if (!rowData) return;
const rcpt_atclno = rowData.rcpt_atclno;
location.href = "<?= site_url('article/receipt/detail') ?>/" + rcpt_atclno;
});
// 엑셀 다운로드 click
$("#excel-download").on("click", function () {