mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
128 lines
2.8 KiB
JavaScript
128 lines
2.8 KiB
JavaScript
import { partyWithAvatar } from '@/utils';
|
|
import { t } from 'frappe';
|
|
import getCommonExportActions from '../commonExporter';
|
|
|
|
let title = 'General Ledger';
|
|
|
|
const viewConfig = {
|
|
title,
|
|
filterFields: [
|
|
{
|
|
fieldtype: 'Select',
|
|
options: [
|
|
{ label: t`All References`, value: 'All' },
|
|
{ label: t`Invoices`, value: 'SalesInvoice' },
|
|
{ label: t`Bills`, value: 'PurchaseInvoice' },
|
|
{ label: t`Payment`, value: 'Payment' },
|
|
{ label: t`Journal Entry`, value: 'JournalEntry' },
|
|
],
|
|
size: 'small',
|
|
label: t`Reference Type`,
|
|
fieldname: 'referenceType',
|
|
placeholder: 'Reference Type',
|
|
default: 'All',
|
|
},
|
|
{
|
|
fieldtype: 'DynamicLink',
|
|
size: 'small',
|
|
placeholder: 'Reference Name',
|
|
references: 'referenceType',
|
|
label: t`Reference Name`,
|
|
fieldname: 'referenceName',
|
|
},
|
|
{
|
|
fieldtype: 'Link',
|
|
target: 'Account',
|
|
size: 'small',
|
|
placeholder: 'Account',
|
|
label: t`Account`,
|
|
fieldname: 'account',
|
|
},
|
|
{
|
|
fieldtype: 'Link',
|
|
target: 'Party',
|
|
label: t`Party`,
|
|
size: 'small',
|
|
placeholder: 'Party',
|
|
fieldname: 'party',
|
|
},
|
|
{
|
|
fieldtype: 'Date',
|
|
size: 'small',
|
|
placeholder: 'From Date',
|
|
label: t`From Date`,
|
|
fieldname: 'fromDate',
|
|
},
|
|
{
|
|
fieldtype: 'Date',
|
|
size: 'small',
|
|
placeholder: 'To Date',
|
|
label: t`To Date`,
|
|
fieldname: 'toDate',
|
|
},
|
|
{
|
|
fieldtype: 'Check',
|
|
size: 'small',
|
|
default: 0,
|
|
label: t`Cancelled`,
|
|
fieldname: 'reverted',
|
|
},
|
|
],
|
|
method: 'general-ledger',
|
|
actions: getCommonExportActions('general-ledger'),
|
|
getColumns() {
|
|
return [
|
|
{
|
|
label: t`Account`,
|
|
fieldtype: 'Link',
|
|
fieldname: 'account',
|
|
width: 1.5,
|
|
},
|
|
{
|
|
label: t`Date`,
|
|
fieldtype: 'Date',
|
|
fieldname: 'date',
|
|
width: 0.75,
|
|
},
|
|
{
|
|
label: t`Debit`,
|
|
fieldtype: 'Currency',
|
|
fieldname: 'debit',
|
|
width: 1.25,
|
|
},
|
|
{
|
|
label: t`Credit`,
|
|
fieldtype: 'Currency',
|
|
fieldname: 'credit',
|
|
width: 1.25,
|
|
},
|
|
{
|
|
label: t`Balance`,
|
|
fieldtype: 'Currency',
|
|
fieldname: 'balance',
|
|
width: 1.25,
|
|
},
|
|
{
|
|
label: t`Reference Type`,
|
|
fieldtype: 'Data',
|
|
fieldname: 'referenceType',
|
|
},
|
|
{
|
|
label: t`Reference Name`,
|
|
fieldtype: 'Data',
|
|
fieldname: 'referenceName',
|
|
},
|
|
{
|
|
label: t`Party`,
|
|
fieldtype: 'Link',
|
|
fieldname: 'party',
|
|
component(cellValue) {
|
|
return partyWithAvatar(cellValue);
|
|
},
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default viewConfig;
|