|
|
@ -3,6 +3,7 @@ package com.yxt.anrui.fin.biz.kingdee; |
|
|
|
import cn.hutool.json.JSONString; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.yxt.anrui.fin.api.kingdee.FinKingDeeFeign; |
|
|
|
import com.yxt.anrui.fin.api.kingdee.KingDeeBillId; |
|
|
|
import com.yxt.anrui.fin.api.kingdee.appayable.APPayable; |
|
|
|
import com.yxt.anrui.fin.api.kingdee.appaybill.ApPayBill; |
|
|
|
import com.yxt.anrui.fin.api.kingdee.arreceivable.ARReceivable; |
|
|
@ -287,6 +288,14 @@ public class FinKingDeeFeignRest implements FinKingDeeFeign { |
|
|
|
log.info("FinKingDeeFeignRest-saveBdCustomers:{}", JSONObject.toJSONString(bdCustomers)); |
|
|
|
return bdCustomerService.updateCustomers(bdCustomers); |
|
|
|
} |
|
|
|
@ApiOperation("根据编码查询客户的存在状态 true 存在,false不存在") |
|
|
|
@GetMapping("/customerExistState/{number}") |
|
|
|
@ResponseBody |
|
|
|
@Override |
|
|
|
public ResultBean<Boolean> customerExistState(String number) { |
|
|
|
log.info("FinKingDeeFeignRest-customerExistState:{}", number); |
|
|
|
return finKingDeeService.customerExistState(number); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("单个 销售出库单 推送客户信息") |
|
|
|
@PostMapping("/updateSingleCustomer") |
|
|
|