|
|
@@ -306,7 +306,9 @@ public class StoreIn implements Serializable {
|
|
|
public EnterpriseSimple getEnterprise() {
|
|
|
try {
|
|
|
this.enterprise = StringUtils.hasText(this.enterpriseJson) ? JacksonUtils.fromJson(this.enterpriseJson, EnterpriseSimple.class) : null;
|
|
|
- this.enterprise.setDescription(this.enterpriseInfo.getDescription());
|
|
|
+ if (!StringUtils.isEmpty(this.enterpriseInfo)) {
|
|
|
+ this.enterprise.setDescription(this.enterpriseInfo.getDescription());
|
|
|
+ }
|
|
|
return this.enterprise;
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|