2015-03-03 14:55:30 +05:30
|
|
|
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
// License: GNU General Public License v3. See license.txt
|
2013-01-11 19:25:46 +05:30
|
|
|
|
2014-02-14 15:47:51 +05:30
|
|
|
frappe.provide("erpnext.stock");
|
2013-01-11 19:25:46 +05:30
|
|
|
|
2014-02-14 15:47:51 +05:30
|
|
|
erpnext.stock.StockController = class StockController extends frappe.ui.form.Controller {
|
2014-06-24 18:53:04 +05:30
|
|
|
onload() {
|
|
|
|
// warehouse query if company
|
|
|
|
if (this.frm.fields_dict.company) {
|
|
|
|
this.setup_warehouse_query();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_warehouse_query() {
|
2015-08-13 11:47:25 +05:30
|
|
|
var me = this;
|
|
|
|
erpnext.queries.setup_queries(this.frm, "Warehouse", function() {
|
2014-06-25 13:29:43 +05:30
|
|
|
return erpnext.queries.warehouse(me.frm.doc);
|
2014-06-24 18:53:04 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-14 16:59:11 +05:30
|
|
|
setup_posting_date_time_check() {
|
|
|
|
// make posting date default and read only unless explictly checked
|
|
|
|
frappe.ui.form.on(this.frm.doctype, 'set_posting_date_and_time_read_only', function(frm) {
|
|
|
|
if(frm.doc.docstatus == 0 && frm.doc.set_posting_time) {
|
|
|
|
frm.set_df_property('posting_date', 'read_only', 0);
|
|
|
|
frm.set_df_property('posting_time', 'read_only', 0);
|
|
|
|
} else {
|
|
|
|
frm.set_df_property('posting_date', 'read_only', 1);
|
|
|
|
frm.set_df_property('posting_time', 'read_only', 1);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
frappe.ui.form.on(this.frm.doctype, 'set_posting_time', function(frm) {
|
|
|
|
frm.trigger('set_posting_date_and_time_read_only');
|
|
|
|
});
|
|
|
|
|
|
|
|
frappe.ui.form.on(this.frm.doctype, 'refresh', function(frm) {
|
|
|
|
// set default posting date / time
|
|
|
|
if(frm.doc.docstatus==0) {
|
|
|
|
if(!frm.doc.posting_date) {
|
|
|
|
frm.set_value('posting_date', frappe.datetime.nowdate());
|
|
|
|
}
|
|
|
|
if(!frm.doc.posting_time) {
|
|
|
|
frm.set_value('posting_time', frappe.datetime.now_time());
|
|
|
|
}
|
|
|
|
frm.trigger('set_posting_date_and_time_read_only');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-01-11 19:25:46 +05:30
|
|
|
show_stock_ledger() {
|
|
|
|
var me = this;
|
2020-04-30 10:38:58 +05:30
|
|
|
if(this.frm.doc.docstatus > 0) {
|
2014-12-16 17:19:36 +05:30
|
|
|
cur_frm.add_custom_button(__("Stock Ledger"), function() {
|
2014-02-14 15:47:51 +05:30
|
|
|
frappe.route_options = {
|
2013-07-30 14:42:15 +05:30
|
|
|
voucher_no: me.frm.doc.name,
|
|
|
|
from_date: me.frm.doc.posting_date,
|
2020-06-25 15:34:01 +05:30
|
|
|
to_date: moment(me.frm.doc.modified).format('YYYY-MM-DD'),
|
|
|
|
company: me.frm.doc.company,
|
|
|
|
show_cancelled_entries: me.frm.doc.docstatus === 2
|
2013-07-30 14:42:15 +05:30
|
|
|
};
|
2014-02-14 15:47:51 +05:30
|
|
|
frappe.set_route("query-report", "Stock Ledger");
|
2016-01-06 15:34:56 +05:30
|
|
|
}, __("View"));
|
2013-07-30 14:42:15 +05:30
|
|
|
}
|
2014-06-24 18:53:04 +05:30
|
|
|
|
2013-07-09 12:05:33 +05:30
|
|
|
}
|
2013-10-17 17:01:14 +05:30
|
|
|
|
2013-07-09 12:05:33 +05:30
|
|
|
show_general_ledger() {
|
2013-07-30 14:42:15 +05:30
|
|
|
var me = this;
|
2020-04-30 10:38:58 +05:30
|
|
|
if(this.frm.doc.docstatus > 0) {
|
2014-12-16 17:19:36 +05:30
|
|
|
cur_frm.add_custom_button(__('Accounting Ledger'), function() {
|
2014-02-14 15:47:51 +05:30
|
|
|
frappe.route_options = {
|
2013-12-23 17:07:57 +05:30
|
|
|
voucher_no: me.frm.doc.name,
|
|
|
|
from_date: me.frm.doc.posting_date,
|
2020-06-25 15:34:01 +05:30
|
|
|
to_date: moment(me.frm.doc.modified).format('YYYY-MM-DD'),
|
2014-01-03 12:30:24 +05:30
|
|
|
company: me.frm.doc.company,
|
2020-06-25 15:34:01 +05:30
|
|
|
group_by: "Group by Voucher (Consolidated)",
|
|
|
|
show_cancelled_entries: me.frm.doc.docstatus === 2
|
2013-07-09 12:05:33 +05:30
|
|
|
};
|
2014-02-14 15:47:51 +05:30
|
|
|
frappe.set_route("query-report", "General Ledger");
|
2016-01-06 15:34:56 +05:30
|
|
|
}, __("View"));
|
2013-07-09 12:05:33 +05:30
|
|
|
}
|
2013-01-11 19:25:46 +05:30
|
|
|
}
|
2014-06-24 18:53:04 +05:30
|
|
|
};
|