Commit 949b6b26 by 宋祥

1.回填实体类

parent 76ab87da
...@@ -66,6 +66,8 @@ public class ServiceHPFW001B extends ServiceEPBase { ...@@ -66,6 +66,8 @@ public class ServiceHPFW001B extends ServiceEPBase {
} else { } else {
this.modify(fFw001); this.modify(fFw001);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fFw001);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
......
...@@ -66,6 +66,8 @@ public class ServiceHPFW002B extends ServiceEPBase { ...@@ -66,6 +66,8 @@ public class ServiceHPFW002B extends ServiceEPBase {
} else { } else {
this.modify(fFw002); this.modify(fFw002);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fFw002);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
......
...@@ -67,6 +67,8 @@ public class ServiceHPFW003B extends ServiceEPBase { ...@@ -67,6 +67,8 @@ public class ServiceHPFW003B extends ServiceEPBase {
} else { } else {
this.modify(fFw003); this.modify(fFw003);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fFw003);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
......
...@@ -64,6 +64,8 @@ public class ServiceHPFW004B extends ServiceEPBase { ...@@ -64,6 +64,8 @@ public class ServiceHPFW004B extends ServiceEPBase {
} else { } else {
this.modify(fFw004); this.modify(fFw004);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fFw004);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
......
...@@ -66,6 +66,8 @@ public class ServiceHPFW007B extends ServiceEPBase { ...@@ -66,6 +66,8 @@ public class ServiceHPFW007B extends ServiceEPBase {
} else { } else {
this.modify(fFw007); this.modify(fFw007);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fFw007);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
......
...@@ -57,14 +57,16 @@ public class ServiceHPXT011B extends ServiceEPBase { ...@@ -57,14 +57,16 @@ public class ServiceHPXT011B extends ServiceEPBase {
*/ */
public EiInfo save(EiInfo inInfo) { public EiInfo save(EiInfo inInfo) {
try { try {
HPXT011 fXt001 = MapUtils.toDaoEPBase(inInfo, HPXT011.class); HPXT011 fXt011 = MapUtils.toDaoEPBase(inInfo, HPXT011.class);
fXt001.setNoticeDate(DateUtils.formatShort(fXt001.getNoticeDate())); fXt011.setNoticeDate(DateUtils.formatShort(fXt011.getNoticeDate()));
fXt001.setExpireDate(DateUtils.formatShort(fXt001.getExpireDate())); fXt011.setExpireDate(DateUtils.formatShort(fXt011.getExpireDate()));
if (StringUtils.isBlank(fXt001.getNoticeNo())) { if (StringUtils.isBlank(fXt011.getNoticeNo())) {
this.add(fXt001); this.add(fXt011);
} else { } else {
this.modify(fXt001); this.modify(fXt011);
} }
// 回填实体信息,移动端更新数据使用
inInfo.set("detail", fXt011);
inInfo.setStatus(EiConstant.STATUS_DEFAULT); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("保存成功!"); inInfo.setMsg("保存成功!");
} catch (Exception e) { } catch (Exception e) {
...@@ -77,24 +79,24 @@ public class ServiceHPXT011B extends ServiceEPBase { ...@@ -77,24 +79,24 @@ public class ServiceHPXT011B extends ServiceEPBase {
/** /**
* 新增 * 新增
* *
* @param fXt001 * @param fXt011
*/ */
private void add(HPXT011 fXt001) { private void add(HPXT011 fXt011) {
fXt001.setNoticeNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.NOTICE_NO)); fXt011.setNoticeNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.NOTICE_NO));
fXt001.setStatus(HPConstant.submitStatus.S0); fXt011.setStatus(HPConstant.submitStatus.S0);
fXt001.setDeleteFlag(CommonConstant.YesNo.NO_0); fXt011.setDeleteFlag(CommonConstant.YesNo.NO_0);
DaoUtils.insert(HPXT011.INSERT, fXt001); DaoUtils.insert(HPXT011.INSERT, fXt011);
} }
/** /**
* 修改数据 * 修改数据
* *
* @param fXt001 * @param fXt011
*/ */
private void modify(HPXT011 fXt001) { private void modify(HPXT011 fXt011) {
HPXT011 dbXt001 = HpXtUtils.HpXt011.lockAndGet(fXt001); HPXT011 dbXt011 = HpXtUtils.HpXt011.lockAndGet(fXt011);
this.checkData(fXt001, dbXt001); this.checkData(fXt011, dbXt011);
DaoUtils.update(HPXT011.UPDATE, fXt001); DaoUtils.update(HPXT011.UPDATE, fXt011);
} }
/** /**
...@@ -117,15 +119,15 @@ public class ServiceHPXT011B extends ServiceEPBase { ...@@ -117,15 +119,15 @@ public class ServiceHPXT011B extends ServiceEPBase {
/** /**
* 数据校验 * 数据校验
* *
* @param fXt001 * @param fXt011
* @param dbXt001 * @param dbXt011
*/ */
private void checkData(HPXT011 fXt001, HPXT011 dbXt001) { private void checkData(HPXT011 fXt011, HPXT011 dbXt011) {
String noticeNo = fXt001.getNoticeNo(); String noticeNo = fXt011.getNoticeNo();
AssertUtils.isNull(dbXt001, String.format("公告【%s】不存在", noticeNo)); AssertUtils.isNull(dbXt011, String.format("公告【%s】不存在", noticeNo));
AssertUtils.isNotEquals(dbXt001.getDeleteFlag(), CommonConstant.YesNo.NO_0, AssertUtils.isNotEquals(dbXt011.getDeleteFlag(), CommonConstant.YesNo.NO_0,
String.format("公告【%s】不是\"未删除\"状态,不允许操作", noticeNo)); String.format("公告【%s】不是\"未删除\"状态,不允许操作", noticeNo));
AssertUtils.isNotEquals(dbXt001.getStatus(), HPConstant.dealStatus.S0, AssertUtils.isNotEquals(dbXt011.getStatus(), HPConstant.dealStatus.S0,
String.format("公告【%s】不是\"未提交\"状态,不允许操作", noticeNo)); String.format("公告【%s】不是\"未提交\"状态,不允许操作", noticeNo));
} }
......
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