mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
28158e5add
- hide name from transactional schemas
179 lines
3.8 KiB
JSON
179 lines
3.8 KiB
JSON
{
|
|
"name": "Payment",
|
|
"label": "Payment",
|
|
"naming": "numberSeries",
|
|
"isSingle": false,
|
|
"isChild": false,
|
|
"isSubmittable": true,
|
|
"fields": [
|
|
{
|
|
"label": "Payment No",
|
|
"fieldname": "name",
|
|
"fieldtype": "Data",
|
|
"required": true,
|
|
"readOnly": true,
|
|
"hidden": true
|
|
},
|
|
{
|
|
"fieldname": "numberSeries",
|
|
"label": "Number Series",
|
|
"fieldtype": "Link",
|
|
"target": "NumberSeries",
|
|
"create": true,
|
|
"required": true,
|
|
"default": "PAY-",
|
|
"section": "Default"
|
|
},
|
|
{
|
|
"fieldname": "party",
|
|
"label": "Party",
|
|
"fieldtype": "Link",
|
|
"target": "Party",
|
|
"create": true,
|
|
"required": true,
|
|
"section": "Default"
|
|
},
|
|
{
|
|
"fieldname": "date",
|
|
"label": "Posting Date",
|
|
"fieldtype": "Date",
|
|
"required": true,
|
|
"section": "Default"
|
|
},
|
|
{
|
|
"fieldname": "paymentType",
|
|
"label": "Payment Type",
|
|
"fieldtype": "Select",
|
|
"placeholder": "Payment Type",
|
|
"options": [
|
|
{
|
|
"value": "Receive",
|
|
"label": "Receive"
|
|
},
|
|
{
|
|
"value": "Pay",
|
|
"label": "Pay"
|
|
}
|
|
],
|
|
"required": true,
|
|
"section": "Default"
|
|
},
|
|
{
|
|
"fieldname": "account",
|
|
"label": "From Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account",
|
|
"create": true,
|
|
"required": true,
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "paymentAccount",
|
|
"label": "To Account",
|
|
"placeholder": "To Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account",
|
|
"create": true,
|
|
"required": true,
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "paymentMethod",
|
|
"label": "Payment Method",
|
|
"placeholder": "Payment Method",
|
|
"fieldtype": "Select",
|
|
"options": [
|
|
{
|
|
"value": "Cash",
|
|
"label": "Cash"
|
|
},
|
|
{
|
|
"value": "Cheque",
|
|
"label": "Cheque"
|
|
},
|
|
{
|
|
"value": "Transfer",
|
|
"label": "Transfer"
|
|
}
|
|
],
|
|
"default": "Cash",
|
|
"required": true,
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "clearanceDate",
|
|
"label": "Clearance Date",
|
|
"placeholder": "Clearance Date",
|
|
"fieldtype": "Date",
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "referenceId",
|
|
"label": "Ref. / Cheque No.",
|
|
"placeholder": "Ref. / Cheque No.",
|
|
"fieldtype": "Data",
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "referenceDate",
|
|
"label": "Reference Date",
|
|
"placeholder": "Ref. Date",
|
|
"fieldtype": "Date",
|
|
"section": "Details"
|
|
},
|
|
{
|
|
"fieldname": "amount",
|
|
"label": "Amount",
|
|
"fieldtype": "Currency",
|
|
"required": true,
|
|
"section": "Amounts"
|
|
},
|
|
{
|
|
"fieldname": "writeoff",
|
|
"label": "Write Off",
|
|
"fieldtype": "Currency",
|
|
"section": "Amounts"
|
|
},
|
|
{
|
|
"fieldname": "amountPaid",
|
|
"label": "Amount Paid",
|
|
"fieldtype": "Currency",
|
|
"computed": true,
|
|
"section": "Amounts"
|
|
},
|
|
{
|
|
"fieldname": "for",
|
|
"label": "Payment Reference",
|
|
"fieldtype": "Table",
|
|
"target": "PaymentFor",
|
|
"required": false,
|
|
"section": "References"
|
|
},
|
|
{
|
|
"fieldname": "attachment",
|
|
"placeholder": "Add attachment",
|
|
"label": "Attachment",
|
|
"fieldtype": "Attachment",
|
|
"section": "References"
|
|
}
|
|
],
|
|
"quickEditFields": [
|
|
"numberSeries",
|
|
"party",
|
|
"date",
|
|
"paymentMethod",
|
|
"account",
|
|
"paymentType",
|
|
"paymentAccount",
|
|
"referenceId",
|
|
"referenceDate",
|
|
"clearanceDate",
|
|
"amount",
|
|
"writeoff",
|
|
"amountPaid",
|
|
"attachment",
|
|
"for"
|
|
],
|
|
"keywordFields": ["name", "party", "paymentType"]
|
|
}
|