2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

refactor for better readabilty

This commit is contained in:
2021-06-25 07:40:01 +02:00
parent b99af16bfd
commit 4921cd47f9
2 changed files with 25 additions and 13 deletions

View File

@ -817,6 +817,14 @@ function loadPriceBreakTable(table, options) {
});
}
function initPriceBreakSet(table, options) {
var part_id = options.part_id;
var pb_human_name = options.pb_human_name;
var pb_url_slug = options.pb_url_slug;
var pb_url = options.pb_url;
var pb_new_btn = options.pb_new_btn;
var pb_new_url = options.pb_new_url;
function initPriceBreakSet(table, part_id, pb_human_name, pb_url_slug, pb_url, pb_new_btn, pb_new_url) {