|
|
@@ -80,6 +80,7 @@ public class StoreInFacadeImpl implements StoreInFacade {
|
|
|
}
|
|
|
store.setQualifications(qualifications);
|
|
|
if ("BASIC_INFO".equals(kind)) {
|
|
|
+ String description = store.getEnterprise().getDescription();
|
|
|
Enterprise enter = enterpriseDao.findByUu(store.getEnUU());
|
|
|
enter.setEnAddress(store.getEnterprise().getEnAddress());
|
|
|
enter.setEnTel(store.getEnterprise().getEnTel());
|
|
|
@@ -87,7 +88,7 @@ public class StoreInFacadeImpl implements StoreInFacade {
|
|
|
enter.setEnPhone(store.getEnterprise().getEnPhone());
|
|
|
enter.setEnWeixin(store.getEnterprise().getEnWeixin());
|
|
|
enter.setEnQQ(store.getEnterprise().getEnQQ());
|
|
|
- enter.setDescription(store.getEnterprise().getDescription());
|
|
|
+ enter.setDescription(description);
|
|
|
enterpriseDao.save(enter);
|
|
|
}
|
|
|
store = storeInDao.save(store);
|