* Add the entry to manage product lines.

This commit is contained in:
wumo
2018-03-29 15:52:43 +08:00
parent 4d59bf7f42
commit f94e93a593
+15
View File
@@ -0,0 +1,15 @@
/**
* Load product Lines.
*
* @param $rootID
* @access public
* @return void
*/
function loadProductLines(rootID)
{
link = createLink('tree', 'ajaxGetOptionMenu', 'rootID=' + rootID + '&viewtype=line' + '&branch=0' + '&rootModuleID=0&returnType=html&fieldID=&needManage=true');
$('#lineIdBox').load(link, function()
{
$(this).find('select').chosen(defaultChosenOptions)
});
}