-
Notifications
You must be signed in to change notification settings - Fork 25
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 #418 from efeone/poc_requirements_5
feat: purchase entry final changes
- Loading branch information
Showing
8 changed files
with
622 additions
and
301 deletions.
There are no files selected for viewing
Empty file.
68 changes: 68 additions & 0 deletions
68
aumms/aumms/doctype/item_wise_stone_details/item_wise_stone_details.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,68 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2024-08-20 10:05:13.872227", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"reference", | ||
"stone", | ||
"uom", | ||
"stone_weight", | ||
"rate", | ||
"amount" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "reference", | ||
"fieldtype": "Data", | ||
"in_list_view": 1, | ||
"label": "Reference" | ||
}, | ||
{ | ||
"fieldname": "stone", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Stone", | ||
"options": "AuMMS Item" | ||
}, | ||
{ | ||
"fieldname": "uom", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "UOM", | ||
"options": "UOM" | ||
}, | ||
{ | ||
"fieldname": "stone_weight", | ||
"fieldtype": "Float", | ||
"in_list_view": 1, | ||
"label": "Stone Weight" | ||
}, | ||
{ | ||
"fieldname": "rate", | ||
"fieldtype": "Currency", | ||
"in_list_view": 1, | ||
"label": "Rate" | ||
}, | ||
{ | ||
"fieldname": "amount", | ||
"fieldtype": "Currency", | ||
"in_list_view": 1, | ||
"label": "Amount" | ||
} | ||
], | ||
"index_web_pages_for_search": 1, | ||
"istable": 1, | ||
"links": [], | ||
"modified": "2024-08-20 10:07:11.991708", | ||
"modified_by": "Administrator", | ||
"module": "AuMMS", | ||
"name": "Item Wise Stone Details", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"states": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
aumms/aumms/doctype/item_wise_stone_details/item_wise_stone_details.py
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,9 @@ | ||
# Copyright (c) 2024, efeone and contributors | ||
# For license information, please see license.txt | ||
|
||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
|
||
class ItemWiseStoneDetails(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
Oops, something went wrong.