| 번호 | 판매소 | 접수일 | 배달일 | 수량 | 금액 | 상태 |
|---|---|---|---|---|---|---|
| = $i + 1 ?> | = esc($row->so_shop_name ?? '') ?> | = esc($row->so_order_date ?? '') ?> | = esc($row->so_delivery_date ?? '') ?> | = number_format((int)($row->so_qty ?? 0)) ?> | = number_format((float)($row->so_amount ?? 0)) ?> | so_status ?? 'normal'; echo match($st) { 'normal' => '정상', 'cancelled' => '취소', default => esc($st) }; ?> |
| 등록된 주문이 없습니다. | ||||||
| 번호 | 판매소 | 판매일 | 봉투코드 | 봉투명 | 수량 | 단가 | 금액 | 구분 |
|---|---|---|---|---|---|---|---|---|
| = $i + 1 ?> | = esc($row->bs_shop_name ?? '') ?> | = esc($row->bs_sale_date ?? '') ?> | = esc($row->bs_bag_code ?? '') ?> | = esc($row->bs_bag_name ?? '') ?> | = number_format((int)($row->bs_qty ?? 0)) ?> | = number_format((float)($row->bs_unit_price ?? 0)) ?> | = number_format((float)($row->bs_amount ?? 0)) ?> | bs_type ?? 'sale'; echo match($t) { 'sale' => '판매', 'return' => '반품', 'cancel' => '취소', default => esc($t) }; ?> |
| 등록된 판매/반품이 없습니다. | ||||||||