* Hide market field in market's research list.

This commit is contained in:
hufangzhou
2023-09-06 10:49:49 +08:00
parent 77eb7d4ee4
commit 2c09f34ba3
+1 -1
View File
@@ -32,7 +32,7 @@ $(function()
{
$dropmenu.append("<li><a href='<?php echo $this->createLink('datatable', 'ajaxCustom', 'id=' . $this->moduleName . '&method=' . $this->methodName . '&extra=unsetStory')?>' data-toggle='modal' data-type='ajax'><?php echo $lang->datatable->custom?></a></li>");
}
else if(currentModule == 'marketreport' && currentMethod == 'browse')
else if((currentModule == 'marketreport' || currentModule == 'marketresearch') && currentMethod == 'browse')
{
$dropmenu.append("<li><a href='<?php echo $this->createLink('datatable', 'ajaxCustom', 'id=' . $this->moduleName . '&method=' . $this->methodName . '&extra=unsetMarket')?>' data-toggle='modal' data-type='ajax'><?php echo $lang->datatable->custom?></a></li>");
}