Skip to content

Commit

Permalink
Fix tier price import issue #20 (#77)
Browse files Browse the repository at this point in the history
Co-authored-by: Maxime Flasquin <[email protected]>
  • Loading branch information
mflasquin and Maxime Flasquin authored Mar 25, 2020
1 parent 791fbcc commit 929d898
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function processColumnList(&$cols, $params = null)

public function initialize($params)
{
$sql = "SELECT COUNT(store_id) as cnt FROM " . $this->tablename("core_store") . " WHERE store_id!=0";
$sql = "SELECT COUNT(store_id) as cnt FROM " . $this->tablename("store") . " WHERE store_id!=0";
$ns = $this->selectOne($sql, array(), "cnt");
if ($ns == 1) {
$this->_singlestore = 1;
Expand Down

0 comments on commit 929d898

Please sign in to comment.