[fix] purchase order dashboard

This commit is contained in:
Rushabh Mehta 2016-07-22 13:25:33 +05:30
parent c96263ceb8
commit 29517d0b8c
3 changed files with 16 additions and 5 deletions

View File

@ -1,12 +1,24 @@
from frappe import _ from frappe import _
data = { data = {
'docstatus': 1,
'fieldname': 'purchase_order', 'fieldname': 'purchase_order',
'internal_links': {
'Material Request': ['items', 'material_request'],
'Supplier Quotation': ['items', 'supplier_quotation'],
'Project': ['project'],
},
'transactions': [ 'transactions': [
{ {
'label': _('Related'), 'label': _('Related'),
'items': ['Purchase Receipt', 'Purchase Invoice', 'Stock Entry'] 'items': ['Purchase Receipt', 'Purchase Invoice']
},
{
'label': _('Reference'),
'items': ['Material Request', 'Supplier Quotation', 'Project']
},
{
'label': _('Sub-contracting'),
'items': ['Stock Entry']
}, },
] ]
} }

View File

@ -79,7 +79,7 @@ erpnext.buying.MaterialRequestController = erpnext.buying.BuyingController.exten
// stop // stop
cur_frm.add_custom_button(__('Stop'), cur_frm.add_custom_button(__('Stop'),
cur_frm.cscript['Stop Material Request'], __("Status")); cur_frm.cscript['Stop Material Request']);
} }
} }
@ -102,7 +102,7 @@ erpnext.buying.MaterialRequestController = erpnext.buying.BuyingController.exten
if(doc.docstatus == 1 && doc.status == 'Stopped') if(doc.docstatus == 1 && doc.status == 'Stopped')
cur_frm.add_custom_button(__('Re-open'), cur_frm.add_custom_button(__('Re-open'),
cur_frm.cscript['Unstop Material Request'], __("Status")); cur_frm.cscript['Unstop Material Request']);
}, },

View File

@ -1,7 +1,6 @@
from frappe import _ from frappe import _
data = { data = {
'docstatus': 1,
'fieldname': 'material_request', 'fieldname': 'material_request',
'transactions': [ 'transactions': [
{ {