🐛 fix(types): Order type

This commit is contained in:
web@ppanel
2024-11-26 15:19:52 +07:00
parent 255bd8219c
commit c7e50a9b84
3 changed files with 15 additions and 7 deletions
+9 -3
View File
@@ -87,13 +87,19 @@ export default function Page() {
</span>
</li>
<li className='flex items-center justify-between'>
<span className='text-muted-foreground'>{t('reductionPrice')}</span>
<span className='text-muted-foreground'>{t('discount')}</span>
<span>
<Display type='currency' value={row.original.reduction} />
<Display type='currency' value={row.original.discount} />
</span>
</li>
<li className='flex items-center justify-between'>
<span className='text-muted-foreground'>{t('feAmount')}</span>
<span className='text-muted-foreground'>{t('couponDiscount')}</span>
<span>
<Display type='currency' value={row.original.coupon_discount} />
</span>
</li>
<li className='flex items-center justify-between'>
<span className='text-muted-foreground'>{t('feeAmount')}</span>
<span>
<Display type='currency' value={row.original.fee_amount} />
</span>