2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/reports/TrialBalance/viewConfig.js
2022-03-31 10:53:11 +05:30

65 lines
1.6 KiB
JavaScript

import frappe, { t } from 'frappe';
import getCommonExportActions from '../commonExporter';
const title = t`Trial Balance`;
export default {
title: title,
method: 'trial-balance',
treeView: true,
filterFields: [
{
fieldtype: 'Date',
fieldname: 'fromDate',
label: t`From Date`,
size: 'small',
placeholder: t`From Date`,
required: 1,
default: async () => {
return (await frappe.getSingle('AccountingSettings')).fiscalYearStart;
},
},
{
fieldtype: 'Date',
size: 'small',
placeholder: t`To Date`,
fieldname: 'toDate',
label: t`To Date`,
required: 1,
default: async () => {
return (await frappe.getSingle('AccountingSettings')).fiscalYearEnd;
},
},
],
actions: getCommonExportActions('trial-balance'),
getColumns() {
const columns = [
{ label: t`Account`, fieldtype: 'Data', fieldname: 'account', width: 2 },
{
label: t`Opening (Dr)`,
fieldtype: 'Currency',
fieldname: 'openingDebit',
},
{
label: t`Opening (Cr)`,
fieldtype: 'Currency',
fieldname: 'openingCredit',
},
{ label: t`Debit`, fieldtype: 'Currency', fieldname: 'debit' },
{ label: t`Credit`, fieldtype: 'Currency', fieldname: 'credit' },
{
label: t`Closing (Dr)`,
fieldtype: 'Currency',
fieldname: 'closingDebit',
},
{
label: t`Closing (Cr)`,
fieldtype: 'Currency',
fieldname: 'closingCredit',
},
];
return columns;
},
};