2013-01-11 13:55:46 +00:00
|
|
|
// ERPNext - web based ERP (http://erpnext.com)
|
|
|
|
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
wn.provide("erpnext.stock");
|
|
|
|
|
2013-03-11 14:14:52 +00:00
|
|
|
erpnext.stock.StockController = wn.ui.form.Controller.extend({
|
2013-01-11 13:55:46 +00:00
|
|
|
show_stock_ledger: function() {
|
|
|
|
var me = this;
|
2013-07-09 06:35:33 +00:00
|
|
|
this.frm.add_custom_button("Stock Ledger", function() {
|
2013-07-01 09:47:36 +00:00
|
|
|
wn.route_options = {
|
|
|
|
voucher_no: me.frm.doc.name,
|
|
|
|
from_date: cur_frm.doc.posting_date,
|
|
|
|
to_date: cur_frm.doc.posting_date
|
|
|
|
};
|
|
|
|
wn.set_route('stock-ledger');
|
2013-01-11 13:55:46 +00:00
|
|
|
}, "icon-bar-chart");
|
2013-07-09 06:35:33 +00:00
|
|
|
},
|
|
|
|
show_general_ledger: function() {
|
|
|
|
if(doc.docstatus==1) {
|
|
|
|
cur_frm.add_custom_button('Accounting Ledger', function() {
|
|
|
|
wn.route_options = {
|
|
|
|
"voucher_no": doc.name,
|
|
|
|
"from_date": doc.posting_date,
|
|
|
|
"to_date": doc.posting_date,
|
|
|
|
};
|
|
|
|
wn.set_route("general-ledger");
|
|
|
|
});
|
|
|
|
}
|
2013-01-11 13:55:46 +00:00
|
|
|
}
|
|
|
|
});
|