-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from efeone/dev_customer_advance
feat: Customer Advances
- Loading branch information
Showing
8 changed files
with
408 additions
and
33 deletions.
There are no files selected for viewing
Empty file.
88 changes: 88 additions & 0 deletions
88
aumms/aumms/doctype/customer_advances/customer_advances.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2023-08-09 11:15:15.314229", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"reference", | ||
"posting_date", | ||
"purity", | ||
"board_rate", | ||
"column_break_vvybt", | ||
"amount", | ||
"item_type", | ||
"stock_uom", | ||
"qty_obtained" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "posting_date", | ||
"fieldtype": "Date", | ||
"in_list_view": 1, | ||
"label": "Posting Date" | ||
}, | ||
{ | ||
"fieldname": "item_type", | ||
"fieldtype": "Link", | ||
"label": "Item Type", | ||
"options": "Item Type" | ||
}, | ||
{ | ||
"fieldname": "purity", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Purity", | ||
"options": "Purity" | ||
}, | ||
{ | ||
"fieldname": "amount", | ||
"fieldtype": "Currency", | ||
"in_list_view": 1, | ||
"label": "Amount" | ||
}, | ||
{ | ||
"fieldname": "board_rate", | ||
"fieldtype": "Currency", | ||
"in_list_view": 1, | ||
"label": "Board Rate" | ||
}, | ||
{ | ||
"fieldname": "stock_uom", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Stock UOM", | ||
"options": "UOM" | ||
}, | ||
{ | ||
"fieldname": "column_break_vvybt", | ||
"fieldtype": "Column Break" | ||
}, | ||
{ | ||
"default": "0", | ||
"fieldname": "qty_obtained", | ||
"fieldtype": "Float", | ||
"label": "Qty Obtained" | ||
}, | ||
{ | ||
"fieldname": "reference", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Reference", | ||
"options": "Payment Entry" | ||
} | ||
], | ||
"index_web_pages_for_search": 1, | ||
"istable": 1, | ||
"links": [], | ||
"modified": "2023-08-14 13:23:50.948546", | ||
"modified_by": "Administrator", | ||
"module": "AuMMS", | ||
"name": "Customer Advances", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"states": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright (c) 2023, efeone and contributors | ||
# For license information, please see license.txt | ||
|
||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
class CustomerAdvances(Document): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.