Merge branch 'develop' into payment-terms
This commit is contained in:
commit
d13fe18d30
@ -4,7 +4,7 @@ import inspect
|
|||||||
import frappe
|
import frappe
|
||||||
from erpnext.hooks import regional_overrides
|
from erpnext.hooks import regional_overrides
|
||||||
|
|
||||||
__version__ = '8.8.4'
|
__version__ = '8.8.6'
|
||||||
|
|
||||||
def get_default_company(user=None):
|
def get_default_company(user=None):
|
||||||
'''Get default company for user'''
|
'''Get default company for user'''
|
||||||
|
|||||||
@ -151,11 +151,6 @@ def get_items_list(pos_profile):
|
|||||||
|
|
||||||
def get_item_groups(pos_profile):
|
def get_item_groups(pos_profile):
|
||||||
item_group_dict = {}
|
item_group_dict = {}
|
||||||
if pos_profile.get('item_groups'):
|
|
||||||
item_groups = []
|
|
||||||
for d in pos_profile.get('item_groups'):
|
|
||||||
item_groups.extend(get_child_nodes('Item Group', d.item_group))
|
|
||||||
else:
|
|
||||||
item_groups = frappe.db.sql("""Select name,
|
item_groups = frappe.db.sql("""Select name,
|
||||||
lft, rgt from `tabItem Group` order by lft""", as_dict=1)
|
lft, rgt from `tabItem Group` order by lft""", as_dict=1)
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,43 @@
|
|||||||
|
QUnit.module('Sales Invoice');
|
||||||
|
|
||||||
|
QUnit.test("test sales Invoice", function(assert) {
|
||||||
|
assert.expect(4);
|
||||||
|
let done = assert.async();
|
||||||
|
frappe.run_serially([
|
||||||
|
() => {
|
||||||
|
return frappe.tests.make('Sales Invoice', [
|
||||||
|
{customer: 'Test Customer 1'},
|
||||||
|
{items: [
|
||||||
|
[
|
||||||
|
{'qty': 5},
|
||||||
|
{'item_code': 'Test Product 1'},
|
||||||
|
]
|
||||||
|
]},
|
||||||
|
{update_stock:1},
|
||||||
|
{customer_address: 'Test1-Billing'},
|
||||||
|
{shipping_address_name: 'Test1-Shipping'},
|
||||||
|
{contact_person: 'Contact 1-Test Customer 1'},
|
||||||
|
{taxes_and_charges: 'TEST In State GST'},
|
||||||
|
{tc_name: 'Test Term 1'},
|
||||||
|
{terms: 'This is Test'}
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
() => cur_frm.save(),
|
||||||
|
() => {
|
||||||
|
// get_item_details
|
||||||
|
assert.ok(cur_frm.doc.items[0].item_name=='Test Product 1', "Item name correct");
|
||||||
|
// get tax details
|
||||||
|
assert.ok(cur_frm.doc.taxes_and_charges=='TEST In State GST', "Tax details correct");
|
||||||
|
// get tax account head details
|
||||||
|
assert.ok(cur_frm.doc.taxes[0].account_head=='CGST - '+frappe.get_abbr(frappe.defaults.get_default('Company')), " Account Head abbr correct");
|
||||||
|
// grand_total Calculated
|
||||||
|
assert.ok(cur_frm.doc.grand_total==590, "Grad Total correct");
|
||||||
|
|
||||||
|
},
|
||||||
|
() => frappe.tests.click_button('Submit'),
|
||||||
|
() => frappe.tests.click_button('Yes'),
|
||||||
|
() => frappe.timeout(0.3),
|
||||||
|
() => done()
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
@ -0,0 +1,56 @@
|
|||||||
|
QUnit.module('Sales Invoice');
|
||||||
|
|
||||||
|
QUnit.test("test sales Invoice with payment", function(assert) {
|
||||||
|
assert.expect(4);
|
||||||
|
let done = assert.async();
|
||||||
|
frappe.run_serially([
|
||||||
|
() => {
|
||||||
|
return frappe.tests.make('Sales Invoice', [
|
||||||
|
{customer: 'Test Customer 1'},
|
||||||
|
{items: [
|
||||||
|
[
|
||||||
|
{'qty': 5},
|
||||||
|
{'item_code': 'Test Product 1'},
|
||||||
|
]
|
||||||
|
]},
|
||||||
|
{update_stock:1},
|
||||||
|
{customer_address: 'Test1-Billing'},
|
||||||
|
{shipping_address_name: 'Test1-Shipping'},
|
||||||
|
{contact_person: 'Contact 1-Test Customer 1'},
|
||||||
|
{taxes_and_charges: 'TEST In State GST'},
|
||||||
|
{tc_name: 'Test Term 1'},
|
||||||
|
{terms: 'This is Test'}
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
() => cur_frm.save(),
|
||||||
|
() => {
|
||||||
|
// get_item_details
|
||||||
|
assert.ok(cur_frm.doc.items[0].item_name=='Test Product 1', "Item name correct");
|
||||||
|
// get tax details
|
||||||
|
assert.ok(cur_frm.doc.taxes_and_charges=='TEST In State GST', "Tax details correct");
|
||||||
|
// grand_total Calculated
|
||||||
|
assert.ok(cur_frm.doc.grand_total==590, "Grad Total correct");
|
||||||
|
|
||||||
|
},
|
||||||
|
() => frappe.tests.click_button('Submit'),
|
||||||
|
() => frappe.tests.click_button('Yes'),
|
||||||
|
() => frappe.timeout(2),
|
||||||
|
() => frappe.tests.click_button('Close'),
|
||||||
|
() => frappe.tests.click_button('Make'),
|
||||||
|
() => frappe.tests.click_link('Payment'),
|
||||||
|
() => frappe.timeout(0.2),
|
||||||
|
() => { cur_frm.set_value('mode_of_payment','Cash');},
|
||||||
|
() => { cur_frm.set_value('paid_to','Cash - '+frappe.get_abbr(frappe.defaults.get_default('Company')));},
|
||||||
|
() => {cur_frm.set_value('reference_no','TEST1234');},
|
||||||
|
() => {cur_frm.set_value('reference_date',frappe.datetime.add_days(frappe.datetime.nowdate(), 0));},
|
||||||
|
() => cur_frm.save(),
|
||||||
|
() => {
|
||||||
|
// get payment details
|
||||||
|
assert.ok(cur_frm.doc.paid_amount==590, "Paid Amount Correct");
|
||||||
|
},
|
||||||
|
() => frappe.tests.click_button('Submit'),
|
||||||
|
() => frappe.tests.click_button('Yes'),
|
||||||
|
() => done()
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
@ -163,6 +163,8 @@ def get_tax_template(posting_date, args):
|
|||||||
return tax_template
|
return tax_template
|
||||||
|
|
||||||
def get_customer_group_condition(customer_group):
|
def get_customer_group_condition(customer_group):
|
||||||
customer_groups = ["'%s'"%(d.name) for d in get_parent_customer_groups(frappe.db.escape(customer_group))]
|
condition = ""
|
||||||
|
customer_groups = ["'%s'"%(frappe.db.escape(d.name)) for d in get_parent_customer_groups(customer_group)]
|
||||||
|
if customer_groups:
|
||||||
condition = ",".join(['%s'] * len(customer_groups))%(tuple(customer_groups))
|
condition = ",".join(['%s'] * len(customer_groups))%(tuple(customer_groups))
|
||||||
return condition
|
return condition
|
||||||
@ -18,7 +18,7 @@ def _execute(filters=None, additional_table_columns=None, additional_query_colum
|
|||||||
aii_account_map = get_aii_accounts()
|
aii_account_map = get_aii_accounts()
|
||||||
if item_list:
|
if item_list:
|
||||||
itemised_tax, tax_columns = get_tax_accounts(item_list, columns,
|
itemised_tax, tax_columns = get_tax_accounts(item_list, columns,
|
||||||
tax_doctype="Purchase Taxes and Charges")
|
doctype="Purchase Invoice", tax_doctype="Purchase Taxes and Charges")
|
||||||
|
|
||||||
columns.append({
|
columns.append({
|
||||||
"fieldname": "currency",
|
"fieldname": "currency",
|
||||||
|
|||||||
@ -139,7 +139,7 @@ def get_delivery_notes_against_sales_order(item_list):
|
|||||||
|
|
||||||
return so_dn_map
|
return so_dn_map
|
||||||
|
|
||||||
def get_tax_accounts(item_list, columns, tax_doctype="Sales Taxes and Charges"):
|
def get_tax_accounts(item_list, columns, doctype="Sales Invoice", tax_doctype="Sales Taxes and Charges"):
|
||||||
import json
|
import json
|
||||||
item_row_map = {}
|
item_row_map = {}
|
||||||
tax_columns = []
|
tax_columns = []
|
||||||
@ -155,11 +155,12 @@ def get_tax_accounts(item_list, columns, tax_doctype="Sales Taxes and Charges"):
|
|||||||
charge_type, base_tax_amount_after_discount_amount
|
charge_type, base_tax_amount_after_discount_amount
|
||||||
from `tab%s`
|
from `tab%s`
|
||||||
where
|
where
|
||||||
parenttype = 'Sales Invoice' and docstatus = 1
|
parenttype = %s and docstatus = 1
|
||||||
and (description is not null and description != '')
|
and (description is not null and description != '')
|
||||||
and parent in (%s)
|
and parent in (%s)
|
||||||
order by description
|
order by description
|
||||||
""" % (tax_doctype, ', '.join(['%s']*len(invoice_item_row))), tuple(invoice_item_row.keys()))
|
""" % (tax_doctype, '%s', ', '.join(['%s']*len(invoice_item_row))),
|
||||||
|
tuple([doctype] + invoice_item_row.keys()))
|
||||||
|
|
||||||
for parent, description, item_wise_tax_detail, charge_type, tax_amount in tax_details:
|
for parent, description, item_wise_tax_detail, charge_type, tax_amount in tax_details:
|
||||||
if description not in tax_columns and tax_amount:
|
if description not in tax_columns and tax_amount:
|
||||||
|
|||||||
@ -67,10 +67,8 @@ QUnit.test("test: purchase order receipt", function(assert) {
|
|||||||
() => frappe.timeout(2),
|
() => frappe.timeout(2),
|
||||||
() => {
|
() => {
|
||||||
assert.ok($('div.slick-cell.l2.r2 > a').text().includes('Test Product 1')
|
assert.ok($('div.slick-cell.l2.r2 > a').text().includes('Test Product 1')
|
||||||
&& $('div.slick-cell.l9.r9 > div').text().includes(5)
|
&& $('div.slick-cell.l9.r9 > div').text().includes(5), "Stock ledger entry correct");
|
||||||
&& $('div.slick-cell.l12.r12 > div').text().includes(433.29), "Stock ledger entry correct",$('div.slick-cell.l12.r12 > div').text());
|
|
||||||
},
|
},
|
||||||
|
|
||||||
() => done()
|
() => done()
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|||||||
@ -195,8 +195,12 @@ def check_portal_enabled(reference_doctype):
|
|||||||
def get_list_context(context=None):
|
def get_list_context(context=None):
|
||||||
from erpnext.controllers.website_list_for_contact import get_list_context
|
from erpnext.controllers.website_list_for_contact import get_list_context
|
||||||
list_context = get_list_context(context)
|
list_context = get_list_context(context)
|
||||||
list_context["show_sidebar"] = True
|
list_context.update({
|
||||||
list_context["title"] = "Request for Quotation"
|
'show_sidebar': True,
|
||||||
|
'show_search': True,
|
||||||
|
'no_breadcrumbs': True,
|
||||||
|
'title': _('Request for Quotation'),
|
||||||
|
})
|
||||||
return list_context
|
return list_context
|
||||||
|
|
||||||
def get_supplier_contacts(doctype, txt, searchfield, start, page_len, filters):
|
def get_supplier_contacts(doctype, txt, searchfield, start, page_len, filters):
|
||||||
|
|||||||
@ -201,7 +201,7 @@
|
|||||||
"fieldname": "old_parent",
|
"fieldname": "old_parent",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 1,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 0,
|
||||||
"in_global_search": 0,
|
"in_global_search": 0,
|
||||||
@ -234,7 +234,7 @@
|
|||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 0,
|
"max_attachments": 0,
|
||||||
"modified": "2017-06-30 08:21:46.411222",
|
"modified": "2017-08-21 02:12:33.177318",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Schools",
|
"module": "Schools",
|
||||||
"name": "Assessment Group",
|
"name": "Assessment Group",
|
||||||
|
|||||||
@ -6,9 +6,10 @@ from __future__ import unicode_literals
|
|||||||
import unittest
|
import unittest
|
||||||
import frappe, erpnext
|
import frappe, erpnext
|
||||||
import frappe.defaults
|
import frappe.defaults
|
||||||
from frappe.utils import cint, flt, cstr, today
|
from frappe.utils import cint, flt, cstr, today, random_string
|
||||||
from erpnext.stock.doctype.purchase_receipt.purchase_receipt import make_purchase_invoice
|
from erpnext.stock.doctype.purchase_receipt.purchase_receipt import make_purchase_invoice
|
||||||
from erpnext import set_perpetual_inventory
|
from erpnext import set_perpetual_inventory
|
||||||
|
from erpnext.stock.doctype.serial_no.serial_no import SerialNoDuplicateError
|
||||||
from erpnext.accounts.doctype.account.test_account import get_inventory_account
|
from erpnext.accounts.doctype.account.test_account import get_inventory_account
|
||||||
|
|
||||||
class TestPurchaseReceipt(unittest.TestCase):
|
class TestPurchaseReceipt(unittest.TestCase):
|
||||||
@ -251,6 +252,27 @@ class TestPurchaseReceipt(unittest.TestCase):
|
|||||||
self.assertEqual(pr2.per_billed, 80)
|
self.assertEqual(pr2.per_billed, 80)
|
||||||
self.assertEqual(pr2.status, "To Bill")
|
self.assertEqual(pr2.status, "To Bill")
|
||||||
|
|
||||||
|
def test_not_accept_duplicate_serial_no(self):
|
||||||
|
from erpnext.stock.doctype.stock_entry.test_stock_entry import make_stock_entry
|
||||||
|
from erpnext.stock.doctype.item.test_item import make_item
|
||||||
|
from erpnext.stock.doctype.delivery_note.test_delivery_note import create_delivery_note
|
||||||
|
|
||||||
|
item_code = frappe.db.get_value('Item', {'has_serial_no': 1})
|
||||||
|
if not item_code:
|
||||||
|
item = make_item("Test Serial Item 1", dict(has_serial_no = 1))
|
||||||
|
item_code = item.name
|
||||||
|
|
||||||
|
serial_no = random_string(5)
|
||||||
|
make_purchase_receipt(item_code=item_code, qty=1, serial_no=serial_no)
|
||||||
|
create_delivery_note(item_code=item_code, qty=1, serial_no=serial_no)
|
||||||
|
|
||||||
|
pr = make_purchase_receipt(item_code=item_code, qty=1, serial_no=serial_no, do_not_submit=True)
|
||||||
|
self.assertRaises(SerialNoDuplicateError, pr.submit)
|
||||||
|
|
||||||
|
se = make_stock_entry(item_code=item_code, target="_Test Warehouse - _TC", qty=1,
|
||||||
|
serial_no=serial_no, basic_rate=100, do_not_submit=True)
|
||||||
|
self.assertRaises(SerialNoDuplicateError, se.submit)
|
||||||
|
|
||||||
def get_gl_entries(voucher_type, voucher_no):
|
def get_gl_entries(voucher_type, voucher_no):
|
||||||
return frappe.db.sql("""select account, debit, credit
|
return frappe.db.sql("""select account, debit, credit
|
||||||
from `tabGL Entry` where voucher_type=%s and voucher_no=%s
|
from `tabGL Entry` where voucher_type=%s and voucher_no=%s
|
||||||
|
|||||||
@ -213,7 +213,7 @@ def validate_serial_no(sle, item_det):
|
|||||||
frappe.throw(_("Serial No {0} does not belong to Item {1}").format(serial_no,
|
frappe.throw(_("Serial No {0} does not belong to Item {1}").format(serial_no,
|
||||||
sle.item_code), SerialNoItemError)
|
sle.item_code), SerialNoItemError)
|
||||||
|
|
||||||
if sr.warehouse and sle.actual_qty > 0:
|
if sle.actual_qty > 0 and has_duplicate_serial_no(sr, sle):
|
||||||
frappe.throw(_("Serial No {0} has already been received").format(serial_no),
|
frappe.throw(_("Serial No {0} has already been received").format(serial_no),
|
||||||
SerialNoDuplicateError)
|
SerialNoDuplicateError)
|
||||||
|
|
||||||
@ -234,6 +234,21 @@ def validate_serial_no(sle, item_det):
|
|||||||
frappe.throw(_("Serial Nos Required for Serialized Item {0}").format(sle.item_code),
|
frappe.throw(_("Serial Nos Required for Serialized Item {0}").format(sle.item_code),
|
||||||
SerialNoRequiredError)
|
SerialNoRequiredError)
|
||||||
|
|
||||||
|
def has_duplicate_serial_no(sn, sle):
|
||||||
|
if sn.warehouse:
|
||||||
|
return True
|
||||||
|
|
||||||
|
status = False
|
||||||
|
if sn.purchase_document_no:
|
||||||
|
if sle.voucher_type in ['Purchase Receipt', 'Stock Entry']:
|
||||||
|
status = True
|
||||||
|
|
||||||
|
if status and sle.voucher_type == 'Stock Entry' and \
|
||||||
|
frappe.db.get_value('Stock Entry', sle.voucher_no, 'purpose') != 'Material Receipt':
|
||||||
|
status = False
|
||||||
|
|
||||||
|
return status
|
||||||
|
|
||||||
def allow_serial_nos_with_different_item(sle_serial_no, sle):
|
def allow_serial_nos_with_different_item(sle_serial_no, sle):
|
||||||
"""
|
"""
|
||||||
Allows same serial nos for raw materials and finished goods
|
Allows same serial nos for raw materials and finished goods
|
||||||
|
|||||||
@ -395,6 +395,7 @@ class TestStockEntry(unittest.TestCase):
|
|||||||
|
|
||||||
def test_serial_item_error(self):
|
def test_serial_item_error(self):
|
||||||
se, serial_nos = self.test_serial_by_series()
|
se, serial_nos = self.test_serial_by_series()
|
||||||
|
if not frappe.db.exists('Serial No', 'ABCD'):
|
||||||
make_serialized_item("_Test Serialized Item", "ABCD\nEFGH")
|
make_serialized_item("_Test Serialized Item", "ABCD\nEFGH")
|
||||||
|
|
||||||
se = frappe.copy_doc(test_records[0])
|
se = frappe.copy_doc(test_records[0])
|
||||||
|
|||||||
@ -13,6 +13,7 @@
|
|||||||
"editable_grid": 0,
|
"editable_grid": 0,
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -42,6 +43,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -72,6 +74,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 1,
|
"bold": 1,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -103,6 +106,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -134,6 +138,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -162,6 +167,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -190,6 +196,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -220,6 +227,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 1,
|
"collapsible": 1,
|
||||||
@ -249,6 +257,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -279,6 +288,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -310,6 +320,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -341,6 +352,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -369,6 +381,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -399,6 +412,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -429,6 +443,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -459,6 +474,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -489,6 +505,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -519,6 +536,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 1,
|
"collapsible": 1,
|
||||||
@ -548,6 +566,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 1,
|
"bold": 1,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -578,6 +597,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -607,6 +627,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -636,6 +657,7 @@
|
|||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"allow_bulk_edit": 0,
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
@ -643,7 +665,7 @@
|
|||||||
"fieldname": "old_parent",
|
"fieldname": "old_parent",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"hidden": 1,
|
"hidden": 1,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 1,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 0,
|
||||||
"in_global_search": 0,
|
"in_global_search": 0,
|
||||||
@ -677,7 +699,7 @@
|
|||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 0,
|
"max_attachments": 0,
|
||||||
"modified": "2017-04-21 16:49:19.018576",
|
"modified": "2017-08-21 02:12:33.652689",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Warehouse",
|
"name": "Warehouse",
|
||||||
|
|||||||
@ -70,7 +70,8 @@ erpnext/buying/doctype/supplier/test_supplier.js
|
|||||||
erpnext/buying/doctype/request_for_quotation/tests/test_request_for_quotation.js
|
erpnext/buying/doctype/request_for_quotation/tests/test_request_for_quotation.js
|
||||||
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation.js
|
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation.js
|
||||||
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation_for_taxes_and_charges.js
|
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation_for_taxes_and_charges.js
|
||||||
erpnext/accounts/doctype/sales_invoice/test_sales_invoice.js
|
erpnext/accounts/doctype/sales_invoice/tests/test_sales_invoice.js
|
||||||
|
erpnext/accounts/doctype/sales_invoice/tests/test_sales_invoice_with_payment.js
|
||||||
erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.js
|
erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.js
|
||||||
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation_for_item_wise_discount.js
|
erpnext/buying/doctype/supplier_quotation/tests/test_supplier_quotation_for_item_wise_discount.js
|
||||||
erpnext/buying/doctype/purchase_order/tests/test_purchase_order.js
|
erpnext/buying/doctype/purchase_order/tests/test_purchase_order.js
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user