销售退货单

This commit is contained in:
2025-11-13 14:18:16 +08:00
parent 50d17a0502
commit 54d0d2e82c
8 changed files with 599 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Services.IServices
{
public interface IPurchaseReturnService
{
/// <summary>
/// 推送采购退料单到金蝶云星空
/// </summary>
/// <param name="id">StorageGoodsDocOutHead表的主键IDGuid格式的字符串</param>
/// <returns>返回金蝶API的响应结果JSON格式</returns>
string PushPurchaseReturnToKingDee(string id);
}
}

View File

@@ -0,0 +1,8 @@
namespace MyCode.Project.Services.IServices
{
public interface ISalesReturnService
{
string PushSalesReturnToKingDee(string id);
}
}