fix: 오류 수정

- 예약 물품 조회 시 인터넷 예약만 조회됨 -> 모든 예약물품 조회
This commit is contained in:
shinmj
2021-12-30 21:54:18 +09:00
parent 016cb069a9
commit 5348bcfe92
11 changed files with 24 additions and 17 deletions

View File

@@ -27,6 +27,10 @@ const ReserveItemAdditional = ({ data }: ReserveItemAdditionalPropps) => {
<dt>{t('reserve_item.contact')}</dt>
<dd>{data.contact}</dd>
</dl>
<dl>
<dt>{'주소'}</dt>
<dd>{data.address}</dd>
</dl>
</div>
)}
<h4>{t('reserve_item.manager')}</h4>

View File

@@ -27,6 +27,10 @@ const ReserveItemInfo = ({ data, reserveStatus }: ReserveItemInfoProps) => {
<dt>{t('reserve_item.name')}</dt>
<dd>{data.reserveItemName}</dd>
</dl>
<dl>
<dt>{'예약방법'}</dt>
<dd>{data.reserveMethodName}</dd>
</dl>
<dl>
<dt>{`${t('reserve.count')}/${t('reserve.number_of_people')}`}</dt>
<dd>{data.totalQty}</dd>