Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
第三方系统对接金蝶采购订单代码示例金蝶单据生成逻辑在金蝶上生成一个订单需要执行三步:
保存(save)
提交(submit)
审批(audit)
金蝶接口调用方法一般使用金蝶 SDK进行接口调用操作,此示例中用到的就是金蝶官网下载的 k3cloud-webapi-sdk8.0.6.jar ;
此外,需要在项目根目录新建一个 kdwebapi.properties 文件,SDK启动时需要使用其中配置链接金蝶环境;
项目中调用金蝶接口就使用 SDK 中的 K3CloudApi ,调用 new 方法实例化:
123456private K3CloudApi k3CloudApi=null;private K3CloudApi getK3CloudApi(){ if(k3CloudApi==null)k3CloudApi=new K3CloudApi(); return k3CloudApi; }
实例会使用 【kdwebapi.properties】 中的配置来初始化, SDK 的操作权限也与配置中的用户相关,用户无权限操 ...













