2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 09:54:04 +00:00
books/schemas/app/LoyaltyPointEntry.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.5 KiB
JSON
Raw Normal View History

2024-08-22 09:02:45 +00:00
{
"name": "LoyaltyPointEntry",
"label": "Loyalty Point Entry",
"create": false,
"naming": "random",
"fields": [
{
"label": "Entry No.",
"fieldname": "name",
"fieldtype": "Data",
"required": true,
"readOnly": true,
"section": "Default"
},
{
"fieldname": "loyaltyProgram",
"readOnly": true,
"label": "Loyalty Program",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "loyaltyProgramTier",
"readOnly": true,
"label": "Loyalty Program Tier",
"fieldtype": "Data"
},
{
"fieldname": "customer",
"readOnly": true,
"label": "Customer",
"fieldtype": "Link",
"target": "Party",
"required": true
},
{
"fieldname": "invoice",
"readOnly": true,
"label": "Invoice",
"fieldtype": "Link",
"target": "SalesInvoice",
"required": true
},
{
"fieldname": "loyaltyPoints",
"readOnly": true,
"label": "Loyalty Points",
"fieldtype": "Int"
},
{
"fieldname": "purchaseAmount",
"readOnly": true,
"label": "Purchase Amount",
"fieldtype": "Currency",
"required": true
},
{
"fieldname": "expiryDate",
"readOnly": true,
"label": "Expiry Date",
"fieldtype": "Date"
},
{
"fieldname": "postingDate",
"readOnly": true,
"label": "Posting Date",
"fieldtype": "Date"
}
]
}