feat: customer credit limit

This commit is contained in:
Mangesh-Khairnar 2019-08-29 18:06:23 +05:30
parent b654dc0e28
commit 36b30911a8
4 changed files with 181 additions and 1790 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,46 @@
{
"creation": "2019-08-28 17:29:42.115592",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"credit_limit",
"bypass_credit_limit_check",
"column_break_2",
"company"
],
"fields": [
{
"fieldname": "credit_limit",
"fieldtype": "Currency",
"label": "Credit Limit"
},
{
"fieldname": "column_break_2",
"fieldtype": "Column Break"
},
{
"fieldname": "company",
"fieldtype": "Link",
"label": "Company",
"options": "Company"
},
{
"default": "0",
"fieldname": "bypass_credit_limit_check",
"fieldtype": "Check",
"label": "Bypass credit limit_check"
}
],
"istable": 1,
"modified": "2019-08-28 18:19:26.905239",
"modified_by": "Administrator",
"module": "Selling",
"name": "Customer Credit Limit",
"owner": "Administrator",
"permissions": [],
"quick_entry": 1,
"sort_field": "modified",
"sort_order": "DESC",
"track_changes": 1
}

View File

@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors
# For license information, please see license.txt
from __future__ import unicode_literals
# import frappe
from frappe.model.document import Document
class CustomerCreditLimit(Document):
pass