|
|
@@ -27,11 +27,17 @@ public class XiangXController {
|
|
|
static BASE64Encoder encoder = new BASE64Encoder();
|
|
|
static BASE64Decoder decoder = new BASE64Decoder();
|
|
|
|
|
|
+ /**
|
|
|
+ * 湘芯过账出入库操作
|
|
|
+ */
|
|
|
@PostMapping("/openapi/applicant/postInOutInfo.action")
|
|
|
public Map<String, Object> postInOutInfo(int inOutId, String items, String master){
|
|
|
return xiangXService.postInOutInfo(inOutId,items,master);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 湘芯创建银行登记
|
|
|
+ */
|
|
|
@PostMapping(value="/openapi/applicant/createVoucher.action")
|
|
|
public Map<String,Object> createAccountRegister(@RequestBody String data) throws Exception {
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
@@ -63,4 +69,12 @@ public class XiangXController {
|
|
|
return xiangXService.getProcessList(page,pageSize,type,keyword,emcode);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 湘芯报关完成操作
|
|
|
+ */
|
|
|
+ @PostMapping("/openapi/applicant/finishPo.action")
|
|
|
+ public Map<String, Object> finishPo(int poId, String master){
|
|
|
+ return xiangXService.finishPo(poId,master);
|
|
|
+ }
|
|
|
+
|
|
|
}
|