mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
fix: customers/vendor reports.
This commit is contained in:
@@ -72,22 +72,22 @@ export const SalesAndPurchasesReportMenus = [
|
||||
},
|
||||
{
|
||||
title: 'Customer Balance summary',
|
||||
desc: '',
|
||||
desc: 'Summerize the total amount of each customer owes your business.',
|
||||
link: '/financial-reports/customers-balance-summary',
|
||||
},
|
||||
{
|
||||
title: 'Vendors Balance summary',
|
||||
desc: '',
|
||||
desc: 'Summerize the total amount your business owes each vendor.',
|
||||
link: '/financial-reports/vendors-balance-summary',
|
||||
},
|
||||
{
|
||||
title: 'Customers Transactions',
|
||||
desc: '',
|
||||
desc: 'Reports every transaction going in and out of each customer.',
|
||||
link: '/financial-reports/transactions-by-customers',
|
||||
},
|
||||
{
|
||||
title: 'Vendors Transactions',
|
||||
desc: '',
|
||||
desc: 'Reports every transaction going in and out of each vendor/supplier.',
|
||||
link: '/financial-reports/transactions-by-vendors',
|
||||
},
|
||||
],
|
||||
|
||||
@@ -14,6 +14,13 @@ const FINANCIAL_REPORTS = {
|
||||
JOURNAL: 'JOURNAL',
|
||||
AR_AGING_SUMMARY: 'AR-AGING-SUMMARY',
|
||||
AP_AGING_SUMMARY: 'AP-AGING-SUMMARY',
|
||||
VENDORS_TRANSACTIONS: 'VENDORS_TRANSACTIONS',
|
||||
CUSTOMERS_TRANSACTIONS: 'CUSTOMERS_TRANSACTIONS',
|
||||
VENDORS_BALANCE_SUMMARY: 'VENDORS_BALANCE_SUMMARY',
|
||||
CUSTOMERS_BALANCE_SUMMARY: 'CUSTOMERS_BALANCE_SUMMARY',
|
||||
SALES_BY_ITEMS: 'SALES_BY_ITEMS',
|
||||
PURCHASES_BY_ITEMS: 'PURCHASES_BY_ITEMS',
|
||||
INVENTORY_VALUATION: 'INVENTORY_VALUATION'
|
||||
};
|
||||
|
||||
const BILLS = {
|
||||
|
||||
@@ -244,7 +244,7 @@ export default [
|
||||
),
|
||||
),
|
||||
breadcrumb: 'Customers Balance Summary ',
|
||||
hint: '..',
|
||||
hint: 'Summerize how much each customer owes your business.',
|
||||
pageTitle: formatMessage({ id: 'customers_balance_summary' }),
|
||||
backLink: true,
|
||||
sidebarExpand: false,
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
.financial-sheet {
|
||||
&--customer-transactions,
|
||||
&--vendor-transactions {
|
||||
width: 100%;
|
||||
|
||||
.financial-sheet__table {
|
||||
.tbody,
|
||||
.thead {
|
||||
@@ -31,7 +33,7 @@
|
||||
}
|
||||
}
|
||||
.tr:not(.no-results) .td {
|
||||
// border-left: 1px solid #ececec;
|
||||
border-left: 1px solid #ececec;
|
||||
}
|
||||
|
||||
.tr.row-type {
|
||||
@@ -43,7 +45,7 @@
|
||||
font-weight: 500;
|
||||
}
|
||||
&.name {
|
||||
border-left-color: transparent;
|
||||
// border-left-color: transparent;
|
||||
}
|
||||
}
|
||||
&:not(:first-child).is-expanded .td {
|
||||
@@ -55,6 +57,14 @@
|
||||
&--CLOSING_BALANCE {
|
||||
font-weight: 500;
|
||||
}
|
||||
&--CUSTOMER,
|
||||
&--VENDOR {
|
||||
&.is-expanded{
|
||||
.td.running_balance .cell-inner{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
&--CUSTOMER:last-child {
|
||||
.td {
|
||||
border-bottom: 1px solid #ddd;
|
||||
|
||||
Reference in New Issue
Block a user