mirror of
https://github.com/frappe/books.git
synced 2025-04-02 16:21:52 +00:00
fix: remove description from the general ledger
This commit is contained in:
parent
d99563977d
commit
fbd2d75cd7
@ -90,40 +90,40 @@ const viewConfig = {
|
|||||||
{
|
{
|
||||||
label: 'Account',
|
label: 'Account',
|
||||||
fieldtype: 'Link',
|
fieldtype: 'Link',
|
||||||
fieldname: 'account'
|
fieldname: 'account',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Date',
|
label: 'Date',
|
||||||
fieldtype: 'Date',
|
fieldtype: 'Date',
|
||||||
fieldname: 'date'
|
fieldname: 'date',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Debit',
|
label: 'Debit',
|
||||||
fieldtype: 'Currency',
|
fieldtype: 'Currency',
|
||||||
fieldname: 'debit',
|
fieldname: 'debit',
|
||||||
width: 0.5
|
width: 0.5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Credit',
|
label: 'Credit',
|
||||||
fieldtype: 'Currency',
|
fieldtype: 'Currency',
|
||||||
fieldname: 'credit',
|
fieldname: 'credit',
|
||||||
width: 0.5
|
width: 0.5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Balance',
|
label: 'Balance',
|
||||||
fieldtype: 'Currency',
|
fieldtype: 'Currency',
|
||||||
fieldname: 'balance',
|
fieldname: 'balance',
|
||||||
width: 0.5
|
width: 0.5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Reference Type',
|
label: 'Reference Type',
|
||||||
fieldtype: 'Data',
|
fieldtype: 'Data',
|
||||||
fieldname: 'referenceType'
|
fieldname: 'referenceType',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Reference Name',
|
label: 'Reference Name',
|
||||||
fieldtype: 'Data',
|
fieldtype: 'Data',
|
||||||
fieldname: 'referenceName'
|
fieldname: 'referenceName',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Party',
|
label: 'Party',
|
||||||
@ -131,13 +131,8 @@ const viewConfig = {
|
|||||||
fieldname: 'party',
|
fieldname: 'party',
|
||||||
component(cellValue) {
|
component(cellValue) {
|
||||||
return partyWithAvatar(cellValue);
|
return partyWithAvatar(cellValue);
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
},
|
||||||
label: 'Description',
|
|
||||||
fieldtype: 'Data',
|
|
||||||
fieldname: 'description'
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user