Commit 29a333ab by jinxin

是否显示弹窗

parent 06ca9274
......@@ -437,7 +437,7 @@ public class LicenceOrderApiServiceImpl implements LicenceOrderApiService {
Integer count = licenceOrderService.selectCountByWxEnterpriseId(wxEnterpriseId);
if (count==0){
StaffActiveDataDTO dto = wxEnterpriseActiveDataService.getWxEnterpriseActiveDataByWxEnterpriseId(wxEnterpriseId);
if (null != dto && dto.getPurchased() > 0){
if (null != dto && dto.getPurchased()!=null && dto.getPurchased() > 0){
return ServiceResponse.success(map);
}
map.put("hasPopup",1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment