|
@@ -84,10 +84,9 @@ class CalcPrice implements ICalc
|
|
|
|
|
|
private function first_order($goods_id)
|
|
|
{
|
|
|
- if($this->mOrderCount == 0) return false;
|
|
|
+ if($this->mOrderCount > 0) return false;
|
|
|
|
|
|
$share_policy = $this->share_policy($goods_id);
|
|
|
-
|
|
|
return empty($share_policy) ? false : $share_policy[0];
|
|
|
}
|
|
|
|