mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 15:20:34 +00:00
fix: formatted_type in inventory adjustment.
This commit is contained in:
@@ -24,7 +24,7 @@ export default function InventoryAdjustmentDetailHeader() {
|
|||||||
</DetailItem>
|
</DetailItem>
|
||||||
|
|
||||||
<DetailItem label={intl.get('type')}>
|
<DetailItem label={intl.get('type')}>
|
||||||
{inventoryAdjustment.type_formatted}
|
{inventoryAdjustment.formatted_type}
|
||||||
</DetailItem>
|
</DetailItem>
|
||||||
|
|
||||||
<DetailItem label={intl.get('adjustment_account')}>
|
<DetailItem label={intl.get('adjustment_account')}>
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ export const PublishAccessor = (r) => {
|
|||||||
* Type column accessor.
|
* Type column accessor.
|
||||||
*/
|
*/
|
||||||
export const TypeAccessor = (row) => {
|
export const TypeAccessor = (row) => {
|
||||||
return row.type_formatted ? (
|
return row.formatted_type ? (
|
||||||
<Tag minimal={true} round={true} intent={Intent.NONE}>
|
<Tag minimal={true} round={true} intent={Intent.NONE}>
|
||||||
{row.type_formatted}
|
{row.formatted_type}
|
||||||
</Tag>
|
</Tag>
|
||||||
) : (
|
) : (
|
||||||
''
|
''
|
||||||
|
|||||||
@@ -664,7 +664,7 @@
|
|||||||
"bill_number_exists": "رقم الفاتورة موجود",
|
"bill_number_exists": "رقم الفاتورة موجود",
|
||||||
"ok": "نعم!",
|
"ok": "نعم!",
|
||||||
"quantity_cannot_be_zero_or_empty": "لا يمكن أن تكون الكمية صفراً أو فارغة.",
|
"quantity_cannot_be_zero_or_empty": "لا يمكن أن تكون الكمية صفراً أو فارغة.",
|
||||||
"customer_email": "البريد إلكتروني الزبون",
|
"customer_email": "البريد إلكتروني ",
|
||||||
"customer_phone_number": "رقم هاتف الزبون",
|
"customer_phone_number": "رقم هاتف الزبون",
|
||||||
"opening_balance_at": "الرصيد الافتتاحي عند",
|
"opening_balance_at": "الرصيد الافتتاحي عند",
|
||||||
"opening_balance": "الرصيد الافتتاحي",
|
"opening_balance": "الرصيد الافتتاحي",
|
||||||
@@ -689,7 +689,7 @@
|
|||||||
"customer_has_sales_invoices": "لا يمكن حذف الزبون لديه فواتير المبيعات مرتبطة.",
|
"customer_has_sales_invoices": "لا يمكن حذف الزبون لديه فواتير المبيعات مرتبطة.",
|
||||||
"account_name_is_already_used": "اسم الحساب مستخدم بالفعل.",
|
"account_name_is_already_used": "اسم الحساب مستخدم بالفعل.",
|
||||||
"vendors": "الموردين",
|
"vendors": "الموردين",
|
||||||
"vendor_email": "البريد إلكتروني المورد",
|
"vendor_email": "البريد إلكتروني",
|
||||||
"new_vendor": "مورد جديد",
|
"new_vendor": "مورد جديد",
|
||||||
"edit_vendor": "تعديل المورد",
|
"edit_vendor": "تعديل المورد",
|
||||||
"delete_vendor": "حذف المورد",
|
"delete_vendor": "حذف المورد",
|
||||||
|
|||||||
Reference in New Issue
Block a user