Commit 43b7e4cd by jinxin

Merge remote-tracking branch 'origin/feature/企微许可账号购买' into developer

parents c16d369b 29a333ab
......@@ -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