diff --git a/hesabixCore/src/Controller/BankController.php b/hesabixCore/src/Controller/BankController.php
index 02c78e6..0a4ef1b 100644
--- a/hesabixCore/src/Controller/BankController.php
+++ b/hesabixCore/src/Controller/BankController.php
@@ -440,7 +440,7 @@ class BankController extends AbstractController
'تاریخ',
'توضیحات',
'شرح سند',
- 'تفضیل',
+ 'تفصیل',
'بستانکار',
'بدهکار',
'سال مالی',
diff --git a/hesabixCore/src/Controller/CashdeskController.php b/hesabixCore/src/Controller/CashdeskController.php
index 5d77de5..b02ff8f 100644
--- a/hesabixCore/src/Controller/CashdeskController.php
+++ b/hesabixCore/src/Controller/CashdeskController.php
@@ -389,7 +389,7 @@ class CashdeskController extends AbstractController
'تاریخ',
'توضیحات',
'شرح سند',
- 'تفضیل',
+ 'تفصیل',
'بستانکار',
'بدهکار',
'سال مالی',
diff --git a/hesabixCore/src/Controller/HesabdariController.php b/hesabixCore/src/Controller/HesabdariController.php
index 8a30e37..c151cf1 100644
--- a/hesabixCore/src/Controller/HesabdariController.php
+++ b/hesabixCore/src/Controller/HesabdariController.php
@@ -1112,11 +1112,11 @@ class HesabdariController extends AbstractController
return $this->json(['result' => 0, 'message' => 'نام ردیف حساب و آیدی والد الزامی است'], 400);
}
- // بررسی نوع تفضیل حساب
+ // بررسی نوع تفصیل حساب
$allowedTypes = ['calc', 'person', 'commodity', 'bank', 'salary', 'cashdesk'];
$accountType = $params['accountType'] ?? 'calc';
if (!in_array($accountType, $allowedTypes)) {
- return $this->json(['result' => 0, 'message' => 'نوع تفضیل حساب نامعتبر است'], 400);
+ return $this->json(['result' => 0, 'message' => 'نوع تفصیل حساب نامعتبر است'], 400);
}
$parentNode = $entityManager->getRepository(HesabdariTable::class)->findOneBy(['code' => $params['parentId']]);
diff --git a/hesabixCore/src/Controller/PersonsController.php b/hesabixCore/src/Controller/PersonsController.php
index 9753829..e3a8e60 100644
--- a/hesabixCore/src/Controller/PersonsController.php
+++ b/hesabixCore/src/Controller/PersonsController.php
@@ -747,7 +747,7 @@ class PersonsController extends AbstractController
'شماره تراکنش',
'تاریخ',
'توضیحات',
- 'تفضیل',
+ 'تفصیل',
'بستانکار',
'بدهکار',
'تشخیص',
diff --git a/hesabixCore/src/Controller/SalaryController.php b/hesabixCore/src/Controller/SalaryController.php
index d0c1e9d..27f0697 100644
--- a/hesabixCore/src/Controller/SalaryController.php
+++ b/hesabixCore/src/Controller/SalaryController.php
@@ -405,7 +405,7 @@ class SalaryController extends AbstractController
'شماره تراکنش',
'تاریخ',
'توضیحات',
- 'تفضیل',
+ 'تفصیل',
'بستانکار',
'بدهکار',
'سال مالی',
diff --git a/hesabixCore/templates/pdf/bank_card.html.twig b/hesabixCore/templates/pdf/bank_card.html.twig
index e8f2d6e..395a8e3 100644
--- a/hesabixCore/templates/pdf/bank_card.html.twig
+++ b/hesabixCore/templates/pdf/bank_card.html.twig
@@ -49,7 +49,7 @@
تاریخ |
توضیحات |
شرح سند |
- تفضیل |
+ تفصیل |
بدهکار |
بستانکار |
سال مالی |
diff --git a/hesabixCore/templates/pdf/cashdesk_card.html.twig b/hesabixCore/templates/pdf/cashdesk_card.html.twig
index 6d6e975..152e4ab 100644
--- a/hesabixCore/templates/pdf/cashdesk_card.html.twig
+++ b/hesabixCore/templates/pdf/cashdesk_card.html.twig
@@ -42,7 +42,7 @@
تاریخ |
توضیحات |
شرح سند |
- تفضیل |
+ تفصیل |
واریز |
برداشت |
سال مالی |
diff --git a/hesabixCore/templates/pdf/person_card.html.twig b/hesabixCore/templates/pdf/person_card.html.twig
index 53e200b..f32f10d 100644
--- a/hesabixCore/templates/pdf/person_card.html.twig
+++ b/hesabixCore/templates/pdf/person_card.html.twig
@@ -78,7 +78,7 @@
فاکتور/سند |
تاریخ |
توضیحات |
- تفضیل |
+ تفصیل |
بدهکار |
بستانکار |
تشخیص |
diff --git a/hesabixCore/templates/pdf/printers/doc.html.twig b/hesabixCore/templates/pdf/printers/doc.html.twig
index 660189c..7ce2b87 100644
--- a/hesabixCore/templates/pdf/printers/doc.html.twig
+++ b/hesabixCore/templates/pdf/printers/doc.html.twig
@@ -52,7 +52,7 @@
ردیف |
جدول حساب |
مرجع |
- تفضیل |
+ تفصیل |
بستانکار |
بدهکار |
توضیحات |
diff --git a/hesabixCore/templates/pdf/salary_card.html.twig b/hesabixCore/templates/pdf/salary_card.html.twig
index e0056f7..4281e26 100644
--- a/hesabixCore/templates/pdf/salary_card.html.twig
+++ b/hesabixCore/templates/pdf/salary_card.html.twig
@@ -37,7 +37,7 @@
شماره سند |
تاریخ |
توضیحات |
- تفضیل |
+ تفصیل |
بدهکار |
بستانکار |
شرح سند |
diff --git a/webUI/src/i18n/fa_lang.ts b/webUI/src/i18n/fa_lang.ts
index bfdb859..2ddf20a 100755
--- a/webUI/src/i18n/fa_lang.ts
+++ b/webUI/src/i18n/fa_lang.ts
@@ -313,7 +313,7 @@ const fa_lang = {
add_new: "افزودن جدید",
delete: "حذف",
manage_columns: "مدیریت ستونها",
- person_with_det_report: 'گزارش تفضیلی اشخاص',
+ person_with_det_report: 'گزارش تفصیلی اشخاص',
change_password_label: 'تغییر کلمه عبور',
download: 'دانلود',
delete_group: 'حذف گروهی',
@@ -855,7 +855,7 @@ const fa_lang = {
"income": "درآمد",
"sell_receive": "دریافت فاکتور فروش",
"buy_send": "پرداخت فاکتور فروش",
- "detail": "تفضیل",
+ "detail": "تفصیل",
"reject_cheque": "برگشت چک",
"modify_cheque": "ثبت چک",
"modify_cheque_output": "دریافت چک",
@@ -897,7 +897,7 @@ const fa_lang = {
"debtor": "بدهکار",
"settled": "تسویهشده",
"accounting_status": "وضعیت حسابداری",
- "detail": "تفضیل",
+ "detail": "تفصیل",
"settlement": "تشخیص",
"running_balance": "باقیمانده",
"available_balance": "موجودی",
diff --git a/webUI/src/views/acc/accounting/table.vue b/webUI/src/views/acc/accounting/table.vue
index 8098725..5405be0 100755
--- a/webUI/src/views/acc/accounting/table.vue
+++ b/webUI/src/views/acc/accounting/table.vue
@@ -71,7 +71,7 @@
:items="accountTypes"
item-title="label"
item-value="value"
- label="نوع تفضیل حساب"
+ label="نوع تفصیل حساب"
:disabled="dialogLoading"
class="mt-4"
>
@@ -279,7 +279,7 @@ export default {
...node,
text: `(${node.id}) ${node.text}`,
originalText: node.text, // ذخیره نام اصلی برای استفاده در ویرایش
- type: node.type || 'calc' // اضافه کردن نوع تفضیل حساب
+ type: node.type || 'calc' // اضافه کردن نوع تفصیل حساب
};
});
diff --git a/webUI/src/views/acc/accounting/viewDoc.vue b/webUI/src/views/acc/accounting/viewDoc.vue
index d6ae2c9..03ddd78 100755
--- a/webUI/src/views/acc/accounting/viewDoc.vue
+++ b/webUI/src/views/acc/accounting/viewDoc.vue
@@ -86,7 +86,7 @@ const item = ref({
const headers = [
{ title: 'ردیف', key: 'index', align: 'center', sortable: false },
{ title: 'حساب', key: 'table', sortable: false },
- { title: 'تفضیل', key: 'refCode', sortable: false },
+ { title: 'تفصیل', key: 'refCode', sortable: false },
{ title: 'شرح', key: 'des', sortable: false },
{ title: 'بدهکار', key: 'bd', sortable: false },
{ title: 'بستانکار', key: 'bs', sortable: false }
diff --git a/webUI/src/views/acc/cashdesk/card.vue b/webUI/src/views/acc/cashdesk/card.vue
index 087ddbb..ad08921 100755
--- a/webUI/src/views/acc/cashdesk/card.vue
+++ b/webUI/src/views/acc/cashdesk/card.vue
@@ -125,7 +125,7 @@ export default {
{ text: "عملیات", value: "operation" },
{ text: "تاریخ", value: "date", 'sortable': true },
{ text: "شرح", value: "des" },
- { text: "تفضیل", value: "ref", 'sortable': true },
+ { text: "تفصیل", value: "ref", 'sortable': true },
{ text: "واریز", value: "bd", 'sortable': true },
{ text: "برداشت", value: "bs", 'sortable': true },
]
diff --git a/webUI/src/views/acc/reports/reports.vue b/webUI/src/views/acc/reports/reports.vue
index cfec65b..0073b99 100755
--- a/webUI/src/views/acc/reports/reports.vue
+++ b/webUI/src/views/acc/reports/reports.vue
@@ -130,7 +130,7 @@ export default {
{ text: 'بدهکاران', to: '/acc/reports/persons/debtors', showIf: null },
{ text: 'بستانکاران', to: '/acc/reports/persons/depositors', showIf: null },
{ text: 'خرید و فروش های اشخاص', to: '/acc/reports/persons/buysell', showIf: null },
- { text: 'گزارش تفضیلی اشخاص', to: '/acc/reports/persons/withdet', showIf: 'accpro' }
+ { text: 'گزارش تفصیلی اشخاص', to: '/acc/reports/persons/withdet', showIf: 'accpro' }
],
bankReports: [
{ text: 'گردش حساب بانک', to: '/acc/banks/card/view/' },
diff --git a/webUI/src/views/acc/salary/card.vue b/webUI/src/views/acc/salary/card.vue
index 204b02e..d7b046c 100755
--- a/webUI/src/views/acc/salary/card.vue
+++ b/webUI/src/views/acc/salary/card.vue
@@ -165,7 +165,7 @@ export default {
{ title: 'شماره سند', key: "code", align: "center", sortable: true },
{ title: 'تاریخ', key: "date", align: "center", sortable: true },
{ title: 'شرح', key: "des", align: "center" },
- { title: 'تفضیل', key: "ref", align: "center", sortable: true },
+ { title: 'تفصیل', key: "ref", align: "center", sortable: true },
{ title: 'بدهکار', key: "bd", align: "center", sortable: true },
{ title: 'بستانکار', key: "bs", align: "center", sortable: true },
],