diff --git a/resources/views/approvals/partials/_expense-form.blade.php b/resources/views/approvals/partials/_expense-form.blade.php index 25ec82f3..20ccb98c 100644 --- a/resources/views/approvals/partials/_expense-form.blade.php +++ b/resources/views/approvals/partials/_expense-form.blade.php @@ -365,7 +365,6 @@ function makeItem(data) { { value: 'transfer', label: '송금' }, { value: 'auto_transfer', label: '자동이체 출금' }, { value: 'cash_advance', label: '현금/가지급정산' }, - { value: 'welfare_card', label: '복지카드' }, ], taxInvoiceTypes: [ { value: 'normal', label: '일반' }, @@ -380,7 +379,7 @@ function makeItem(data) { tax_invoice: initialData?.tax_invoice || 'normal', write_date: initialData?.write_date || today, approval_date: initialData?.approval_date || today, - department: initialData?.department || '본사', + department: initialData?.department || '경리부', writer_name: initialData?.writer_name || authUserName, items: items, attachment_memo: initialData?.attachment_memo || '', diff --git a/resources/views/approvals/partials/_expense-show.blade.php b/resources/views/approvals/partials/_expense-show.blade.php index 587098b1..43813763 100644 --- a/resources/views/approvals/partials/_expense-show.blade.php +++ b/resources/views/approvals/partials/_expense-show.blade.php @@ -9,7 +9,6 @@ 'transfer' => '송금', 'auto_transfer' => '자동이체 출금', 'cash_advance' => '현금/가지급정산', - 'welfare_card' => '복지카드', ]; $taxInvoiceLabels = [ 'normal' => '일반',