mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
108 lines
2.3 KiB
JavaScript
108 lines
2.3 KiB
JavaScript
import { DateTime } from 'luxon';
|
|
import { stateCodeMap } from '../../accounting/gst';
|
|
import { titleCase } from '../../src/utils';
|
|
|
|
const stateList = Object.keys(stateCodeMap).map(titleCase).sort();
|
|
|
|
export default {
|
|
filterFields: [
|
|
{
|
|
fieldtype: 'AutoComplete',
|
|
label: 'Place',
|
|
size: 'small',
|
|
placeholder: 'Place',
|
|
fieldname: 'place',
|
|
getList: () => stateList,
|
|
},
|
|
{
|
|
fieldtype: 'Date',
|
|
label: 'From Date',
|
|
size: 'small',
|
|
placeholder: 'From Date',
|
|
fieldname: 'fromDate',
|
|
default: () => DateTime.local().minus({ months: 3 }).toISODate(),
|
|
},
|
|
{
|
|
fieldtype: 'Date',
|
|
label: 'To Date',
|
|
size: 'small',
|
|
placeholder: 'To Date',
|
|
fieldname: 'toDate',
|
|
default: () => DateTime.local().toISODate(),
|
|
},
|
|
],
|
|
getColumns({ filters }) {
|
|
const columns = [
|
|
{
|
|
label: 'Party',
|
|
fieldtype: 'Data',
|
|
fieldname: 'partyName',
|
|
width: 1.5,
|
|
},
|
|
{
|
|
label: 'Invoice No.',
|
|
fieldname: 'invNo',
|
|
fieldtype: 'Data',
|
|
},
|
|
{
|
|
label: 'Invoice Value',
|
|
fieldname: 'invAmt',
|
|
fieldtype: 'Currency',
|
|
},
|
|
{
|
|
label: 'Invoice Date',
|
|
fieldname: 'invDate',
|
|
fieldtype: 'Date',
|
|
},
|
|
{
|
|
label: 'Place of supply',
|
|
fieldname: 'place',
|
|
fieldtype: 'Data',
|
|
},
|
|
{
|
|
label: 'Rate',
|
|
fieldname: 'rate',
|
|
fieldtype: 'Data',
|
|
width: 0.5,
|
|
},
|
|
{
|
|
label: 'Taxable Value',
|
|
fieldname: 'taxVal',
|
|
fieldtype: 'Currency',
|
|
},
|
|
{
|
|
label: 'Reverse Chrg.',
|
|
fieldname: 'reverseCharge',
|
|
fieldtype: 'Data',
|
|
},
|
|
{
|
|
label: 'Intergrated Tax',
|
|
fieldname: 'igstAmt',
|
|
fieldtype: 'Currency',
|
|
},
|
|
{
|
|
label: 'Central Tax',
|
|
fieldname: 'cgstAmt',
|
|
fieldtype: 'Currency',
|
|
},
|
|
{
|
|
label: 'State Tax',
|
|
fieldname: 'sgstAmt',
|
|
fieldtype: 'Currency',
|
|
},
|
|
];
|
|
|
|
const transferType = filters.transferType || 'B2B';
|
|
if (transferType === 'B2B') {
|
|
columns.unshift({
|
|
label: 'GSTIN No.',
|
|
fieldname: 'gstin',
|
|
fieldtype: 'Data',
|
|
width: 1.5,
|
|
});
|
|
}
|
|
|
|
return columns;
|
|
},
|
|
};
|