toman and ...

This commit is contained in:
hamid zarghami
2025-03-03 12:48:52 +03:30
parent 3af46a330f
commit e8925de654
6 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ define(['./workbox-e7681877'], (function (workbox) { 'use strict';
"revision": "3ca0b8505b4bec776b69afdba2768812" "revision": "3ca0b8505b4bec776b69afdba2768812"
}, { }, {
"url": "index.html", "url": "index.html",
"revision": "0.tesij0n6d6o" "revision": "0.p2q1at3f1to"
}], {}); }], {});
workbox.cleanupOutdatedCaches(); workbox.cleanupOutdatedCaches();
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), { workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
+3 -3
View File
@@ -226,7 +226,7 @@
"count": "تعداد", "count": "تعداد",
"unit_amount": "مبلغ واحد", "unit_amount": "مبلغ واحد",
"discount": "تخفیف(٪)", "discount": "تخفیف(٪)",
"total_amount": "مبلغ کل(ریال)", "total_amount": "مبلغ کل(تومان)",
"tax": "مالیات بر ارزش افزوده (۰.۹ درصد)", "tax": "مالیات بر ارزش افزوده (۰.۹ درصد)",
"total": "جمع", "total": "جمع",
"error_empty": "همه فیلد ها را پر کنید", "error_empty": "همه فیلد ها را پر کنید",
@@ -341,11 +341,11 @@
"online_pay": "پرداخت آنلاین", "online_pay": "پرداخت آنلاین",
"card_to_card": "کارت به کارت", "card_to_card": "کارت به کارت",
"select_price": "انتخاب مبلغ", "select_price": "انتخاب مبلغ",
"optional_price": "مبلغ دلخواه‌ (به ریال وارد کنید)", "optional_price": "مبلغ دلخواه‌ (به تومان وارد کنید)",
"enter_your_price": "مبلغ دلخواه خودرا وارد کنید", "enter_your_price": "مبلغ دلخواه خودرا وارد کنید",
"select_payment": "انتخاب درگاه پرداخت", "select_payment": "انتخاب درگاه پرداخت",
"pay": "پرداخت", "pay": "پرداخت",
"amount": "مبلغ", "amount": "مبلغ (به تومان وارد کنید)",
"enter_amount_card": "مبلغ کارت به کارت شده را وارد کنید", "enter_amount_card": "مبلغ کارت به کارت شده را وارد کنید",
"enter_amount_sheba": "مبلغ حواله شده را وارد کنید", "enter_amount_sheba": "مبلغ حواله شده را وارد کنید",
"upload_deposit_slip": "آپلود فیش واریزی", "upload_deposit_slip": "آپلود فیش واریزی",
+2 -1
View File
@@ -77,6 +77,7 @@ const Notifications: FC = () => {
default: default:
break break
} }
setShowModal(false)
} }
return ( return (
@@ -142,7 +143,7 @@ const Notifications: FC = () => {
> >
{ {
posts.map((item: NotificationItemType) => ( posts.map((item: NotificationItemType) => (
<div onClick={() => handleRedirect(item.type)} className="bg-white h-fit gap-4 items-start rounded-xl bg-opacity-60 p-3 mb-4 flex" key={item.id}> <div onClick={() => handleRedirect(item.type)} className="bg-white cursor-pointer h-fit gap-4 items-start rounded-xl bg-opacity-60 p-3 mb-4 flex" key={item.id}>
<div className="mt-1"> <div className="mt-1">
<StatusCircle color="#00BA4B" /> <StatusCircle color="#00BA4B" />
</div> </div>
+3 -3
View File
@@ -111,7 +111,7 @@ const ReceiptsDetail: FC = () => {
<span>عدد</span> <span>عدد</span>
</div> </div>
<div> <div>
<span>{NumberFormat(item.totalPrice)}</span> ریال <span>{NumberFormat(item.totalPrice)}</span> تومان
</div> </div>
</div> </div>
) )
@@ -123,7 +123,7 @@ const ReceiptsDetail: FC = () => {
۱۰٪ ارزش افزوده ۱۰٪ ارزش افزوده
</div> </div>
<div> <div>
<span>{NumberFormat(getInvoce.data?.data?.invoice?.tax)}</span> ریال <span>{NumberFormat(getInvoce.data?.data?.invoice?.tax)}</span> تومان
</div> </div>
</div> </div>
<div className='flex justify-between items-center text-xs border-t border-[#EAEDF5] h-14'> <div className='flex justify-between items-center text-xs border-t border-[#EAEDF5] h-14'>
@@ -131,7 +131,7 @@ const ReceiptsDetail: FC = () => {
جمع کل جمع کل
</div> </div>
<div> <div>
<span>{NumberFormat(getInvoce.data?.data?.invoice?.totalPrice)}</span> ریال <span>{NumberFormat(getInvoce.data?.data?.invoice?.totalPrice)}</span> تومان
</div> </div>
</div> </div>
</div> </div>
+1 -1
View File
@@ -86,7 +86,7 @@ const CardtoCard: FC = () => {
label={t('wallet.amount')} label={t('wallet.amount')}
placeholder={t('wallet.enter_amount_card')} placeholder={t('wallet.enter_amount_card')}
name='amount' name='amount'
onChange={formik.handleChange} onChange={(e) => formik.setFieldValue('amount', e.target.value)}
error_text={formik.touched.amount && formik.errors.amount ? formik.errors.amount : ''} error_text={formik.touched.amount && formik.errors.amount ? formik.errors.amount : ''}
seprator seprator
/> />
+1 -1
View File
@@ -87,7 +87,7 @@ const CardtoCard: FC = () => {
label={t('wallet.amount')} label={t('wallet.amount')}
placeholder={t('wallet.enter_amount_sheba')} placeholder={t('wallet.enter_amount_sheba')}
name='amount' name='amount'
onChange={formik.handleChange} onChange={(e) => formik.setFieldValue('amount', e.target.value)}
error_text={formik.touched.amount && formik.errors.amount ? formik.errors.amount : ''} error_text={formik.touched.amount && formik.errors.amount ? formik.errors.amount : ''}
seprator seprator
/> />