I wrote a JAVASDK for Kingdee Cloud
AD |
backgroundShortly after joining, I was responsible for a financial module of the company, which mainly required monthly financial statements and then reconciliation. For small companies, financial personnel can generally complete most tasks through data collection and perspective analysis using Excel
background
Shortly after joining, I was responsible for a financial module of the company, which mainly required monthly financial statements and then reconciliation. For small companies, financial personnel can generally complete most tasks through data collection and perspective analysis using Excel. But my company is considered a medium-sized one and has introduced many systems. The sales management end includes ERP, OMS, WMS, etc., while the finance end mainly uses Kingdee system. To be more precise, I am currently using the SaaS version of Kingdee Cloud. So in order to assist finance in faster reconciliation, the IT department needs to collect and integrate data from various business systems into a database, and then perform reports or BI presentations
Just now, my former colleague made a small system that has such a function, so I went to see if I could reuse it directly, and then went to look at the source code, which is all hard coding. Although it can meet the current functionality, once a new feature is added, a large amount of duplicate code needs to be copied and pieced together, and modifying a feature requires modifying multiple places at the same time. Only one of the business methods is shown below.
At this moment, I am thinking about whether I can write a universal SDK for docking with Kingdee, shielding all details of Kingdee operations, and only providing corresponding login authentication (only requiring the client to provide the corresponding account password), query, save, update, delete, and other interfaces. However, based on years of development experience, I believe that Kingdee will definitely provide such an SDK, so I went to the official search and couldn't find it after searching for a long time (it is said that it already exists). After all, I maintain the system and code on my own, so I can't let myself become so numb, so I still need to do something interesting to make the work not too boring. Therefore, I spent some time manually writing a Kingdee SDK while balancing my daily work. Currently, I have hung it on Gitee, and I feel that the effect is quite good. Interested students can take a look. The following figure shows the statistics of the code base.
Below, I can briefly analyze the structure of the code for everyone.
Kingdee k3coud web API parsing
Firstly, several pain points need to be addressed
- The client should no longer care about login authentication issues, just provide the account password
- Out-of-the-box interface with minimal range of interface parameters
- Object oriented programming rather than exposing a large number of properties or methods originating from an object to various parts of the code
- SDK has high scalability
Before addressing the pain points mentioned above, we need to consider from an abstract perspective what kind of role the Kingdee system belongs to relative to our current platform. Actually, it can be likened to a database, where I need to use my username and password to operate it (query, add, delete, update). So before writing the specific implementation, I first made a top-level decision
Actually, after reading this interface and each method, it's clear what to do next. Let me briefly analyze:
GetEndPoint: The service address provided by the client
GetService: What service, add or query
GetAuth: authentication function
Execute: Execute requests and process data
In that case, we will solve the problemPain point 1The login issue is equivalent to built-in login, and the client does not need to worry. And it also solved the problemPain point 4There is an extension issue with the SDK. If Kingdee adds new service functions in the future, I just need to inherit the Common Service class.
Next is how to make it more convenient for the client to operate. At this moment, I am thinking of various template operations in Spring, such as JdbcTemplate, RedisTemplate, and so on. Thinking about their ideas, it feels very intuitive and convenient. So I created a K3CloudTemplate, and you can take a look at the following implementation:
This will solve the problemPain point 2We can use it out of the box and minimize the parameter range (such as BillQuery and BillSave, where we can view Kingdee's forms as individual objects and extract commonalities instead of passing a large number of parameters). So let's take a look at how forms are abstractly encapsulated.
Firstly, I roughly looked at the request document of Kingdee and found that different interface requests require passing common parameters, such as formId. Therefore, the form should also have a top-level parent class to facilitate shared properties or behaviors. Then there is the top-level entity BillEntity.
The next step is to extend according to different form types, as follows:
It can be seen that BillQuery is significantly different from BillSave. BillQuery is a bit more complex because the query responds to more business scenarios, such as which fields need to be queried, what conditions are, and how many rows are returned. These are all encapsulated in the BillQuery object. If you use a process oriented and heap code mindset to write this query, you may encounter the situation at the beginning of the article where you need to concatenate query fields, conditions, etc. according to Kingdee's API, rather than treating it as a query object and blocking some common actions. This explains whyPain point 3The problem of object attribute decentralization
summary
summary
- Technology ultimately serves the business. Before starting, measure the business boundaries of all parties in order to abstract and make trade-offs
- Being able to use object-oriented programming means never having to be process oriented and not overly encapsulated
- Drawing on classic open-source framework ideas and best practices
- Not reproducing wheels
- Independent thinking ability, not numb or particular
Thank you for reading. It's not easy to code. Could you please share it or give a thumbs up and attention
Disclaimer: The content of this article is sourced from the internet. The copyright of the text, images, and other materials belongs to the original author. The platform reprints the materials for the purpose of conveying more information. The content of the article is for reference and learning only, and should not be used for commercial purposes. If it infringes on your legitimate rights and interests, please contact us promptly and we will handle it as soon as possible! We respect copyright and are committed to protecting it. Thank you for sharing.(Email:[email protected])
Mobile advertising space rental |
Tag: wrote JAVASDK for Kingdee Cloud
Is the world ready to receive ChatGPT therapists?
NextStarting from a video business, the founder has left abroad and has not returned yet. Who still misses LeEco?
Guess you like
-
Changan Automobile and EHang Intelligent Sign Strategic Cooperation Agreement to Build Future Flying Car EcosystemDetail
2024-12-22 15:08:38 1
-
Liaoning Province and Baidu Sign Strategic Cooperation Framework Agreement to Jointly Promote AI Industry DevelopmentDetail
2024-12-20 19:36:38 1
-
Wanxun Technology Secures Nearly RMB 200 Million in Funding to Lead Global Soft Robotics Innovation, Set to Showcase Breakthroughs at CES 2025Detail
2024-12-20 15:54:19 1
-
Huolala's 2025 Spring Festival Freight Festival: Supporting Spring Festival Travel, Offering New Year Benefits to Users and DriversDetail
2024-12-20 13:38:20 1
-
The Third Meeting of the Third Council of the International New Energy Solutions Platform (INES): Charting a Blueprint for a "Dual Carbon" FutureDetail
2024-12-19 17:03:07 1
-
WeChat's Official Account Launches "Author Read Aloud Voice" Feature for Personalized Article ListeningDetail
2024-12-18 17:19:57 1
-
The 12th China University Students' Polymer Materials Innovation and Entrepreneurship Competition Finals Grand Opening in Guangrao CountyDetail
2024-12-18 16:04:28 1
-
Tracing the Ancient Shu Road, Winds of the Three Kingdoms: Global Influencer Shu Road Journey LaunchesDetail
2024-12-18 15:23:35 1
-
Seres: A Pioneer in ESG Practices, Driving Sustainable Development of China's New Energy Vehicle IndustryDetail
2024-12-17 16:20:26 1
- Detail
-
My Health, My Guard: Huawei WATCH D2 Aids Precise Blood Pressure Management in the Winter Health BattleDetail
2024-12-17 09:36:15 1
-
Investigation into the Chaos of Airline Seat Selection: Paid Seat Selection, Seat Locking Mechanisms, and Consumer Rights ProtectionDetail
2024-12-15 16:45:48 1
-
Japanese Scientists Grow Human Organs in Pigs: A Balancing Act of Breakthrough and EthicsDetail
2024-12-14 19:48:50 1
-
Pang Donglai and Sam's Club: Two Paths to Transformation in China's Retail IndustryDetail
2024-12-14 17:57:03 1
-
In-Depth Analysis of China's Precision Reducer Industry: Technological Innovation and Market CompetitionDetail
2024-12-14 16:04:26 1
-
Alibaba's "TAO" App Launches in Japan, Targeting High-Quality Service and Convenient LogisticsDetail
2024-12-13 13:22:23 1
-
In-depth Analysis of China's Cross-border E-commerce Industry Chain: Opportunities and Challenges CoexistDetail
2024-12-13 11:37:17 1
-
Sweet Potato Robotics: How a Unified Software and Hardware Computing Platform Accelerates Robotics Industry DevelopmentDetail
2024-12-13 06:36:34 1
- Detail
-
Yang Liwei: From China's First Taikonaut to a Cornerstone of the Space ProgramDetail
2024-12-12 03:27:26 1