SpecialDefdocPlugin.java 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. package nc.bs.ic.special.plugins;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import nc.bs.framework.common.NCLocator;
  5. import nc.bs.ic.general.plugins.CheckMnyUtil;
  6. import nc.bs.ic.general.plugins.CheckScaleUtil;
  7. import nc.bs.ic.pub.env.ICBSContext;
  8. import nc.bs.logging.Logger;
  9. import nc.bs.pfxx.ISwapContext;
  10. import nc.bs.pfxx.plugin.AbstractPfxxPlugin;
  11. import nc.impl.pubapp.pattern.data.vo.VOQuery;
  12. import nc.itf.scmpub.reference.uap.pf.PfServiceScmUtil;
  13. import nc.itf.uap.pf.IPFBusiAction;
  14. import nc.vo.ic.general.util.InOutHelp;
  15. import nc.vo.ic.pub.define.ICSpecialTableInfo;
  16. import nc.vo.ic.pub.util.StringUtil;
  17. import nc.vo.ic.pub.util.ValueCheckUtil;
  18. import nc.vo.ic.special.define.ICSpecialBillFlag;
  19. import nc.vo.ic.special.define.ICSpecialBodyVO;
  20. import nc.vo.ic.special.define.ICSpecialHeadVO;
  21. import nc.vo.ic.special.define.ICSpecialVO;
  22. import nc.vo.ml.NCLangRes4VoTransl;
  23. import nc.vo.pfxx.auxiliary.AggxsysregisterVO;
  24. import nc.vo.pfxx.util.PfxxPluginUtils;
  25. import nc.vo.pub.AggregatedValueObject;
  26. import nc.vo.pub.BusinessException;
  27. import nc.vo.pub.workflownote.WorkflownoteVO;
  28. import nc.vo.pubapp.pattern.data.ValueUtils;
  29. import nc.vo.pubapp.pattern.exception.ExceptionUtils;
  30. import nc.vo.pubapp.pattern.pub.SqlBuilder;
  31. import nc.vo.pubapp.util.VORowNoUtils;
  32. public class SpecialDefdocPlugin extends AbstractPfxxPlugin {
  33. protected Object processBill(Object vo, ISwapContext swapContext, AggxsysregisterVO aggxsysvo)
  34. throws BusinessException {
  35. if (vo == null) {
  36. throw new BusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0137"));
  37. } else {
  38. String vopk = PfxxPluginUtils.queryBillPKBeforeSaveOrUpdate(swapContext.getBilltype(),
  39. swapContext.getDocID(), swapContext.getOrgPk());
  40. if (!StringUtil.isSEmptyOrNull(vopk) && !this.canUpdate()) {
  41. throw new BusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0138"));
  42. } else {
  43. ICSpecialVO icbill = (ICSpecialVO) vo;
  44. icbill.getHead().setCspecialhid(vopk);
  45. ICSpecialVO[] icbills = null;
  46. if (ValueUtils.getBoolean(swapContext.getReplace())) {
  47. icbills = this.doUpdate(swapContext, icbill);
  48. } else {
  49. icbills = this.doSave(swapContext, icbill);
  50. }
  51. return icbills[0].getHead().getCspecialhid();
  52. }
  53. }
  54. }
  55. private ICSpecialVO[] doSave(ISwapContext swapContext, ICSpecialVO icbill) throws BusinessException {
  56. this.checkCanInster(icbill);
  57. Logger.info("保存新单据前处理...");
  58. this.processBeforeSave(icbill);
  59. Logger.info("保存新单据...");
  60. IPFBusiAction service = (IPFBusiAction) NCLocator.getInstance().lookup(IPFBusiAction.class);
  61. ICSpecialVO[] icbills = (ICSpecialVO[]) ((ICSpecialVO[]) service.processAction("WRITE",
  62. swapContext.getBilltype(), (WorkflownoteVO) null, icbill, (Object) null, (HashMap) null));
  63. if(swapContext.getBilltype().equals("4K")){
  64. service.processAction("APPROVE",
  65. "4K", null, icbill, null, null);
  66. }
  67. Logger.info("保存新单据完成...");
  68. Logger.info("保存新单据后处理...");
  69. this.processAfterSave(icbill);
  70. if (ValueCheckUtil.isNullORZeroLength(icbills)) {
  71. return null;
  72. } else {
  73. if (this.canUpdate()) {
  74. PfxxPluginUtils.addDocIDVsPKContrast(swapContext.getBilltype(), swapContext.getDocID(),
  75. swapContext.getOrgPk(), icbills[0].getHead().getCspecialhid());
  76. }
  77. return icbills;
  78. }
  79. }
  80. private ICSpecialVO[] doUpdate(ISwapContext swapContext, ICSpecialVO icbill) throws BusinessException {
  81. ICSpecialVO bill = this.getOriBillVO(icbill, swapContext.getBilltype());
  82. if (bill != null) {
  83. IPFBusiAction service = (IPFBusiAction) NCLocator.getInstance().lookup(IPFBusiAction.class);
  84. service.processAction("DELETE", swapContext.getBilltype(), (WorkflownoteVO) null, bill, (Object) null,
  85. (HashMap) null);
  86. }
  87. return this.doSave(swapContext, icbill);
  88. }
  89. private ICSpecialVO getOriBillVO(ICSpecialVO icbill, String billtype) {
  90. if (StringUtil.isSEmptyOrNull(icbill.getHead().getVbillcode())) {
  91. return null;
  92. } else {
  93. SqlBuilder where = new SqlBuilder();
  94. where.append(" and ");
  95. where.append("vbillcode", icbill.getHead().getVbillcode());
  96. where.append(" and ");
  97. where.append("pk_group", icbill.getHead().getPk_group());
  98. ICSpecialTableInfo billinfo = ICSpecialTableInfo.getICBillTableInfo(InOutHelp.getICBillType(billtype));
  99. VOQuery<ICSpecialHeadVO> query = new VOQuery(billinfo.getHeadClass(), new String[]{"cspecialhid", "ts"});
  100. ICSpecialHeadVO[] heads = (ICSpecialHeadVO[]) query.query(where.toString(), (String) null);
  101. if (ValueCheckUtil.isNullORZeroLength(heads)) {
  102. return null;
  103. } else {
  104. where = new SqlBuilder();
  105. where.append(" and ");
  106. where.append("cspecialhid", heads[0].getCspecialhid());
  107. VOQuery<ICSpecialBodyVO> bodyquery = new VOQuery(billinfo.getBodyClass(),
  108. new String[]{"cspecialhid", "cspecialbid", "ts"});
  109. ICSpecialBodyVO[] bodys = (ICSpecialBodyVO[]) bodyquery.query(where.toString(), (String) null);
  110. if (ValueCheckUtil.isNullORZeroLength(bodys)) {
  111. return null;
  112. } else {
  113. ICSpecialVO bill = (ICSpecialVO) billinfo.createBillVO();
  114. bill.setParent(heads[0]);
  115. bill.setChildrenVO(bodys);
  116. return bill;
  117. }
  118. }
  119. }
  120. }
  121. protected void processBeforeSave(ICSpecialVO vo) throws BusinessException {
  122. if (null == vo) {
  123. throw new BusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0139"));
  124. } else {
  125. ICBSContext context = new ICBSContext();
  126. if (StringUtil.isSEmptyOrNull(vo.getParentVO().getPk_org())) {
  127. vo.getParentVO().setPk_org(vo.getBodys()[0].getPk_org());
  128. }
  129. if (StringUtil.isSEmptyOrNull(vo.getParentVO().getPk_org_v())) {
  130. vo.getParentVO().setPk_org_v(vo.getBodys()[0].getPk_org_v());
  131. }
  132. if (StringUtil.isSEmptyOrNull(vo.getParentVO().getCwarehouseid())) {
  133. vo.getParentVO().setCwarehouseid(vo.getBodys()[0].getCbodywarehouseid());
  134. }
  135. this.headVOProcess(vo.getParentVO(), context);
  136. this.bodyVOProcess(vo, context);
  137. }
  138. }
  139. protected void processAfterSave(ICSpecialVO vo) throws BusinessException {
  140. if (null == vo) {
  141. throw new BusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0140"));
  142. }
  143. }
  144. private void headVOProcess(ICSpecialHeadVO vo, ICBSContext context) {
  145. vo.setStatus(2);
  146. if (StringUtil.isSEmptyOrNull(vo.getPk_group())) {
  147. vo.setPk_group(context.getPk_group());
  148. }
  149. if (vo.getIprintcount() == null) {
  150. vo.setIprintcount(0);
  151. }
  152. if (vo.getFbillflag() == null) {
  153. vo.setFbillflag((Integer) ICSpecialBillFlag.FREE.value());
  154. }
  155. if (vo.getDbilldate() == null) {
  156. vo.setDbilldate(context.getBizDate());
  157. }
  158. if (StringUtil.isSEmptyOrNull(vo.getCorpoid()) || StringUtil.isSEmptyOrNull(vo.getCorpvid())) {
  159. vo.setCorpoid(context.getOrgInfo().getCorpIDByCalBodyID(vo.getPk_org()));
  160. vo.setCorpvid(context.getOrgInfo().getCorpVIDByCalBodyID(vo.getPk_org()));
  161. }
  162. if (StringUtil.isSEmptyOrNull(vo.getCtrantypeid())) {
  163. String vtrantypecode = vo.getVtrantypecode();
  164. Map<String, String> map = PfServiceScmUtil.getTrantypeidByCode(new String[]{vtrantypecode});
  165. vo.setCtrantypeid(map == null ? null : (String) map.get(vtrantypecode));
  166. }
  167. }
  168. private void bodyVOProcess(ICSpecialVO vo, ICBSContext context) throws BusinessException {
  169. ICSpecialBodyVO[] vos = vo.getChildrenVO();
  170. if (ValueCheckUtil.isNullORZeroLength(vos)) {
  171. throw new BusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0141"));
  172. } else {
  173. VORowNoUtils.setVOsRowNoByRule(vos, "crowno");
  174. ICSpecialHeadVO head = vo.getParentVO();
  175. ICSpecialBodyVO[] arr$ = vos;
  176. int len$ = vos.length;
  177. for (int i$ = 0; i$ < len$; ++i$) {
  178. ICSpecialBodyVO body = arr$[i$];
  179. body.setStatus(2);
  180. if (StringUtil.isSEmptyOrNull(body.getCmaterialoid())
  181. || StringUtil.isSEmptyOrNull(body.getCmaterialvid())) {
  182. throw new BusinessException(
  183. NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0142"));
  184. }
  185. if (StringUtil.isSEmptyOrNull(body.getCastunitid())) {
  186. body.setCastunitid(context.getInvInfo().getInvBasVO(body.getCmaterialvid()).getPk_stockmeas());
  187. }
  188. this.bodyVOCopyFromHeadVO(body, head);
  189. }
  190. }
  191. }
  192. private void bodyVOCopyFromHeadVO(ICSpecialBodyVO body, ICSpecialHeadVO head) {
  193. body.setPk_group(head.getPk_group());
  194. body.setPk_org(head.getPk_org());
  195. body.setPk_org_v(head.getPk_org_v());
  196. body.setCorpoid(head.getCorpoid());
  197. body.setCorpvid(head.getCorpvid());
  198. body.setCbodywarehouseid(head.getCwarehouseid());
  199. }
  200. protected boolean canUpdate() {
  201. return false;
  202. }
  203. protected void checkCanInster(AggregatedValueObject vo) {
  204. this.checkBillFlag(vo);
  205. (new CheckMnyUtil()).checkMny(vo);
  206. (new CheckScaleUtil()).checkScale(vo);
  207. }
  208. private void checkBillFlag(AggregatedValueObject vo) {
  209. if (!Integer.valueOf(ICSpecialBillFlag.getFreeFlag())
  210. .equals(vo.getParentVO().getAttributeValue(this.getBillStatusKey()))) {
  211. ExceptionUtils
  212. .wrappBusinessException(NCLangRes4VoTransl.getNCLangRes().getStrByID("4008001_0", "04008001-0816"));
  213. }
  214. }
  215. protected String getBillStatusKey() {
  216. return "fbillflag";
  217. }
  218. }