brotherton-erpnext/erpnext/public/js/hub/pages/category.js

27 lines
603 B
JavaScript
Raw Normal View History

2018-08-01 10:27:13 +00:00
import SubPage from './subpage';
import { get_item_card_container_html } from '../helpers';
erpnext.hub.Category = class Category extends SubPage {
refresh() {
this.category = frappe.get_route()[2];
this.get_items_for_category(this.category)
2018-08-07 07:26:56 +00:00
.then(items => {
this.render(items);
});
}
get_items_for_category(category) {
this.$wrapper.find('.hub-card-container').empty();
2018-08-07 07:26:56 +00:00
return hub.call('get_items', {
filters: {
hub_category: category
}
});
}
render(items) {
const html = get_item_card_container_html(items, __(this.category));
this.$wrapper.append(html)
}
2018-08-01 11:08:39 +00:00
}