|
@@ -0,0 +1,65 @@
|
|
|
+/*jadclipse*/// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
|
|
|
+
|
|
|
+package nc.pubimpl.so.m32.pfxx;
|
|
|
+
|
|
|
+import nc.bs.framework.common.NCLocator;
|
|
|
+import nc.itf.scmpub.reference.uap.pf.PfServiceScmUtil;
|
|
|
+import nc.itf.uap.pf.IPFBusiAction;
|
|
|
+import nc.pubimpl.so.pfxx.AbstractSOPfxxPlugin;
|
|
|
+import nc.vo.pub.AggregatedValueObject;
|
|
|
+import nc.vo.pub.BusinessException;
|
|
|
+import nc.vo.pub.pf.workflow.IPFActionName;
|
|
|
+import nc.vo.scmpub.res.billtype.SOBillType;
|
|
|
+import nc.vo.so.m32.entity.SaleInvoiceVO;
|
|
|
+
|
|
|
+public class M32PfxxPlugin extends AbstractSOPfxxPlugin
|
|
|
+{
|
|
|
+
|
|
|
+ public M32PfxxPlugin()
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ protected AggregatedValueObject insert(AggregatedValueObject vo)
|
|
|
+ {
|
|
|
+ SaleInvoiceVO insertvo[] = {
|
|
|
+ (SaleInvoiceVO)vo
|
|
|
+ };
|
|
|
+ SaleInvoiceVO retvos[] = (SaleInvoiceVO[])(SaleInvoiceVO[])PfServiceScmUtil.processBatch("WRITE", SOBillType.Invoice.getCode(), insertvo, null, null);
|
|
|
+ IPFBusiAction service = NCLocator.getInstance().lookup(IPFBusiAction.class);
|
|
|
+ try {
|
|
|
+ service.processAction(IPFActionName.APPROVE,
|
|
|
+ "F3", null, retvos[0], null, null);
|
|
|
+ } catch (BusinessException e) {
|
|
|
+ // TODO ×Ô¶¯Éú³ÉµÄ catch ¿é
|
|
|
+ e.printStackTrace();
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ if(null == retvos || retvos.length == 0)
|
|
|
+ return null;
|
|
|
+ else
|
|
|
+ return retvos[0];
|
|
|
+ }
|
|
|
+
|
|
|
+ protected AggregatedValueObject update(AggregatedValueObject vo, String vopk)
|
|
|
+ {
|
|
|
+ SaleInvoiceVO updatevo[] = {
|
|
|
+ (SaleInvoiceVO)vo
|
|
|
+ };
|
|
|
+ SaleInvoiceVO retvos[] = (SaleInvoiceVO[])(SaleInvoiceVO[])PfServiceScmUtil.processBatch("WRITE", SOBillType.Invoice.getCode(), updatevo, null, null);
|
|
|
+ if(null == retvos || retvos.length == 0)
|
|
|
+ return null;
|
|
|
+ else
|
|
|
+ return retvos[0];
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/*
|
|
|
+ DECOMPILATION REPORT
|
|
|
+
|
|
|
+ Decompiled from: D:\xinhe\homebak\NC65\modules\so\META-INF\lib\so_saleinvoice.jar
|
|
|
+ Total time: 18 ms
|
|
|
+ Jad reported messages/errors:
|
|
|
+ Exit status: 0
|
|
|
+ Caught exceptions:
|
|
|
+*/
|