更新采购退料相关服务:添加IPurchaseReturnService接口和PurchaseReturnService实现类
This commit is contained in:
parent
54d0d2e82c
commit
6a6546129f
@ -43,7 +43,7 @@ namespace MyCode.Project.Services.Implementation
|
|||||||
, IJackYunService jackYunService
|
, IJackYunService jackYunService
|
||||||
, IKingDeeService kingDeeService,
|
, IKingDeeService kingDeeService,
|
||||||
IWorkProcessService workProcessService)
|
IWorkProcessService workProcessService)
|
||||||
{洋浦
|
{
|
||||||
_yTKJTShopParameterRepository = yTKJTShopParameterRepository;
|
_yTKJTShopParameterRepository = yTKJTShopParameterRepository;
|
||||||
_pushKingDeeOrderRepository = pushKingDeeOrderRepository;
|
_pushKingDeeOrderRepository = pushKingDeeOrderRepository;
|
||||||
_pushKingDeeOrderItemRepository = pushKingDeeOrderItemRepository;
|
_pushKingDeeOrderItemRepository = pushKingDeeOrderItemRepository;
|
||||||
|
|||||||
@ -0,0 +1,381 @@
|
|||||||
|
using MyCode.Project.Domain.Message.Request.KingDee;
|
||||||
|
using MyCode.Project.Domain.Message.Request.KingDee.SaveModel;
|
||||||
|
using MyCode.Project.Domain.Message.Response.KingDee.K3Result;
|
||||||
|
using MyCode.Project.Domain.Message.Response.KingDee.K3Result.Model;
|
||||||
|
using MyCode.Project.Domain.Model;
|
||||||
|
using MyCode.Project.Domain.Repositories;
|
||||||
|
using MyCode.Project.Infrastructure.Common;
|
||||||
|
using MyCode.Project.Infrastructure.Exceptions;
|
||||||
|
using MyCode.Project.OutSideService;
|
||||||
|
using MyCode.Project.Services.IServices;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace MyCode.Project.Services.Implementation
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 采购退料单服务实现
|
||||||
|
/// 功能:处理采购退料单推送到金蝶云星空的业务逻辑
|
||||||
|
/// </summary>
|
||||||
|
public class PurchaseReturnService : ServiceBase, IPurchaseReturnService
|
||||||
|
{
|
||||||
|
private const string BILL_TYPE_CODE = "TLD01_SYS";
|
||||||
|
private const string OWNER_TYPE = "BD_OwnerOrg";
|
||||||
|
private const string EXCHANGE_TYPE = "HLTX01_SYS";
|
||||||
|
private const string DEFAULT_ORG = "100";
|
||||||
|
private const string DEFAULT_CURRENCY = "PRE001";
|
||||||
|
private const string DEFAULT_UNIT = "Pcs";
|
||||||
|
private const string ROW_TYPE_STANDARD = "Standard";
|
||||||
|
private const string ROW_TYPE_SERVICE = "Service";
|
||||||
|
private const string FORM_ID = "PUR_MRB";
|
||||||
|
private const string MR_TYPE = "B";
|
||||||
|
private const string MR_MODE = "A";
|
||||||
|
private const string ACCT_TYPE = "Q";
|
||||||
|
private const int INOUT_TYPE_PURCHASE_RETURN = 205; // 采购退货
|
||||||
|
|
||||||
|
private IStorageGoodsDocOutHeadRepository _storageGoodsDocOutHeadRepository;
|
||||||
|
private IStorageGoodsDocOutDetailRepository _storageGoodsDocOutDetailRepository;
|
||||||
|
private IYTKJTShopParameterRepository _yTKJTShopParameterRepository;
|
||||||
|
private IKingDeeService _kingDeeService;
|
||||||
|
|
||||||
|
public PurchaseReturnService(
|
||||||
|
IStorageGoodsDocOutHeadRepository storageGoodsDocOutHeadRepository,
|
||||||
|
IStorageGoodsDocOutDetailRepository storageGoodsDocOutDetailRepository,
|
||||||
|
IYTKJTShopParameterRepository yTKJTShopParameterRepository,
|
||||||
|
IKingDeeService kingDeeService)
|
||||||
|
{
|
||||||
|
_storageGoodsDocOutHeadRepository = storageGoodsDocOutHeadRepository;
|
||||||
|
_storageGoodsDocOutDetailRepository = storageGoodsDocOutDetailRepository;
|
||||||
|
_yTKJTShopParameterRepository = yTKJTShopParameterRepository;
|
||||||
|
_kingDeeService = kingDeeService;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 推送采购退料单到金蝶云星空
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="id">StorageGoodsDocOutHead表的主键ID(Guid格式的字符串)</param>
|
||||||
|
/// <returns>返回金蝶API的响应结果(JSON格式)</returns>
|
||||||
|
public string PushPurchaseReturnToKingDee(string id)
|
||||||
|
{
|
||||||
|
var outHead = _storageGoodsDocOutHeadRepository
|
||||||
|
.Queryable()
|
||||||
|
.Where(t => id == t.Id.ToString())
|
||||||
|
.First();
|
||||||
|
|
||||||
|
if (outHead == null)
|
||||||
|
{
|
||||||
|
throw new BaseException($"未找到ID为 {id} 的采购退料单记录");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (outHead.Status != 0 && outHead.Status != 1)
|
||||||
|
{
|
||||||
|
throw new BaseException($"采购退料单 {outHead.GoodsdocNo} 已经推送过,状态为:{outHead.Status},不允许重复推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 校验出库类型是否为采购退货
|
||||||
|
if (outHead.Inouttype != INOUT_TYPE_PURCHASE_RETURN)
|
||||||
|
{
|
||||||
|
throw new BaseException($"出库单类型 {outHead.Inouttype} 不是采购退货(Inouttype应为205),无法推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
var param = _yTKJTShopParameterRepository
|
||||||
|
.Queryable()
|
||||||
|
.Where(t => t.FDOCUMENTSTATUS == "C")
|
||||||
|
.First();
|
||||||
|
|
||||||
|
if (param == null)
|
||||||
|
{
|
||||||
|
throw new BaseException("没有找到已审核的门店参数配置,请联系管理员检查门店参数表");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查采购退货单同步配置(使用采购入库单的配置字段,如果没有则使用通用配置)
|
||||||
|
string syncConfig = param.FPURCHASERETURNORDER ?? param.FSYNCHRONIZEKINGDEE;
|
||||||
|
if (syncConfig == "0")
|
||||||
|
{
|
||||||
|
throw new BaseException("门店参数配置中采购退料单同步功能未启用,请联系管理员检查门店参数配置");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (syncConfig == "1")
|
||||||
|
{
|
||||||
|
var response = PushKingdeePurchaseReturn(outHead, param);
|
||||||
|
string result = JsonHelper.ToJson(response);
|
||||||
|
|
||||||
|
if (response.IsSuccess)
|
||||||
|
{
|
||||||
|
outHead.Status = 2;
|
||||||
|
_storageGoodsDocOutHeadRepository.Update(outHead);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 推送到金蝶云星空
|
||||||
|
/// </summary>
|
||||||
|
private K3CloudResponseStatus PushKingdeePurchaseReturn(StorageGoodsDocOutHead outHead, YTKJTShopParameter param)
|
||||||
|
{
|
||||||
|
// 从StorageGoodsDocOutDetail表获取明细数据
|
||||||
|
var detailList = _storageGoodsDocOutDetailRepository
|
||||||
|
.Queryable()
|
||||||
|
.Where(t => outHead.Id == t.HeadId)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
if (detailList == null || detailList.Count == 0)
|
||||||
|
{
|
||||||
|
throw new BaseException($"采购退料单 {outHead.GoodsdocNo} 没有找到明细数据,无法推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 校验供应商编码(从VendCustomerId获取)
|
||||||
|
if (string.IsNullOrEmpty(outHead.VendCustomerId))
|
||||||
|
{
|
||||||
|
throw new BaseException($"采购退料单 {outHead.GoodsdocNo} 供应商编码为空,无法推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取采购组织ID
|
||||||
|
string purchaseOrgId = param.FPURCHASEORGID?.ToString() ?? param.FSALEORGID?.ToString() ?? DEFAULT_ORG;
|
||||||
|
|
||||||
|
// 获取仓库编码
|
||||||
|
string warehouseCode = outHead.WarehouseCode ?? param.FPURCHASINGWAREHOUSECODE ?? "";
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(warehouseCode))
|
||||||
|
{
|
||||||
|
throw new BaseException($"采购退料单 {outHead.GoodsdocNo} 仓库编码为空,无法推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构建金蝶API的明细行数据
|
||||||
|
var entryList = detailList.Select(n => BuildEntryItem(n, param, purchaseOrgId, outHead)).ToList();
|
||||||
|
|
||||||
|
if (entryList.Count == 0)
|
||||||
|
{
|
||||||
|
throw new BaseException($"采购退料单 {outHead.GoodsdocNo} 明细数据转换失败,无法推送");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 构建金蝶API的主表数据
|
||||||
|
var model = BuildMainModel(outHead, param, purchaseOrgId, entryList);
|
||||||
|
|
||||||
|
// 构建金蝶API请求对象
|
||||||
|
BillSave billSave = new BillSave()
|
||||||
|
{
|
||||||
|
Model = model,
|
||||||
|
IsAutoSubmitAndAudit = true,
|
||||||
|
};
|
||||||
|
|
||||||
|
// 调用金蝶服务保存单据
|
||||||
|
var responseStatus = _kingDeeService.Save(FORM_ID, billSave);
|
||||||
|
return responseStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 构建明细行数据
|
||||||
|
/// </summary>
|
||||||
|
private FPURMRBENTRY BuildEntryItem(StorageGoodsDocOutDetail detail, YTKJTShopParameter param, string orgId, StorageGoodsDocOutHead outHead)
|
||||||
|
{
|
||||||
|
// 根据物料类型动态设置FRowType(如果物料名称包含"服务"或"费用"等关键字,则设置为Service,否则为Standard)
|
||||||
|
string rowType = ROW_TYPE_STANDARD;
|
||||||
|
if (!string.IsNullOrEmpty(detail.GoodsName))
|
||||||
|
{
|
||||||
|
string goodsName = detail.GoodsName.ToUpper();
|
||||||
|
if (goodsName.Contains("服务") || goodsName.Contains("费用") || goodsName.Contains("运费") ||
|
||||||
|
goodsName.Contains("SERVICE") || goodsName.Contains("FEE") || goodsName.Contains("FREIGHT"))
|
||||||
|
{
|
||||||
|
rowType = ROW_TYPE_SERVICE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 计算数量
|
||||||
|
decimal realQty = Math.Abs(detail.Quantity ?? 0);
|
||||||
|
|
||||||
|
// 计算含税单价
|
||||||
|
decimal taxPrice = detail.EstPrice ?? 0;
|
||||||
|
|
||||||
|
// 计算无税单价
|
||||||
|
decimal taxRate = detail.TaxRate ?? param.FTAXRATE;
|
||||||
|
decimal price = taxRate > 0 && taxPrice > 0 ? Math.Round(taxPrice / (1 + taxRate / 100), 10) : taxPrice;
|
||||||
|
|
||||||
|
return new FPURMRBENTRY()
|
||||||
|
{
|
||||||
|
FRowType = rowType,
|
||||||
|
FMATERIALID = new FMATERIALID()
|
||||||
|
{
|
||||||
|
FNumber = detail.SkuBarcode ?? ""
|
||||||
|
},
|
||||||
|
FMaterialDesc = detail.GoodsName ?? "",
|
||||||
|
FUnitID = new FUnitID()
|
||||||
|
{
|
||||||
|
FNumber = detail.UnitName ?? DEFAULT_UNIT
|
||||||
|
},
|
||||||
|
FRMREALQTY = realQty,
|
||||||
|
FREPLENISHQTY = 0,
|
||||||
|
FKEAPAMTQTY = 0,
|
||||||
|
FPRICEUNITID = new FPRICEUNITID()
|
||||||
|
{
|
||||||
|
FNumber = detail.UnitName ?? DEFAULT_UNIT
|
||||||
|
},
|
||||||
|
FPrice = price,
|
||||||
|
FExtAuxUnitQty = 0,
|
||||||
|
FIsReceiveUpdateStock = false,
|
||||||
|
FInvoicedJoinQty = 0,
|
||||||
|
FGiveAway = false,
|
||||||
|
FPriceBaseQty = realQty,
|
||||||
|
FCARRYUNITID = new FCARRYUNITID()
|
||||||
|
{
|
||||||
|
FNumber = detail.UnitName ?? DEFAULT_UNIT
|
||||||
|
},
|
||||||
|
FCarryQty = 0,
|
||||||
|
FCarryBaseQty = 0,
|
||||||
|
FPOORDERENTRYID = 0,
|
||||||
|
FBILLINGCLOSE = false,
|
||||||
|
FRMMUSTQTY = realQty,
|
||||||
|
FAUXUNITQTY = 0,
|
||||||
|
FOWNERTYPEID = OWNER_TYPE,
|
||||||
|
FOWNERID = new FOwnerId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FENTRYTAXRATE = taxRate,
|
||||||
|
FDISCOUNTRATE = 0,
|
||||||
|
FTAXPRICE = taxPrice,
|
||||||
|
FPriceDiscount = 0,
|
||||||
|
FReturnStockEntryId = 0,
|
||||||
|
FIsStock = false,
|
||||||
|
FSRCBillTypeId = "",
|
||||||
|
FSRCBillNo = detail.SourceDetailId ?? outHead.SourceBillNo ?? "",
|
||||||
|
FSUBREQBILLSEQ = 0,
|
||||||
|
FSUBREQENTRYID = 0
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 构建主表数据
|
||||||
|
/// </summary>
|
||||||
|
private PurchaseReturnModel BuildMainModel(StorageGoodsDocOutHead outHead, YTKJTShopParameter param, string orgId, List<FPURMRBENTRY> entryList)
|
||||||
|
{
|
||||||
|
// 解析出库日期
|
||||||
|
DateTime? outDate = null;
|
||||||
|
if (!string.IsNullOrEmpty(outHead.InOutDate))
|
||||||
|
{
|
||||||
|
if (DateTime.TryParse(outHead.InOutDate, out DateTime parsedDate))
|
||||||
|
{
|
||||||
|
outDate = parsedDate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
string dateStr = outDate?.ToString("yyyy-MM-dd HH:mm:ss") ?? DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
|
||||||
|
|
||||||
|
// 获取供应商编码
|
||||||
|
string supplierCode = outHead.VendCustomerId ?? "";
|
||||||
|
|
||||||
|
// 构建收货地址(从收件人地址字段组合)
|
||||||
|
string acceptAddress = BuildAcceptAddress(outHead);
|
||||||
|
|
||||||
|
return new PurchaseReturnModel()
|
||||||
|
{
|
||||||
|
FID = 0,
|
||||||
|
FBillTypeID = new FBillTypeID()
|
||||||
|
{
|
||||||
|
FNUMBER = BILL_TYPE_CODE
|
||||||
|
},
|
||||||
|
FDate = dateStr,
|
||||||
|
FMRTYPE = MR_TYPE,
|
||||||
|
FMRMODE = MR_MODE,
|
||||||
|
FStockOrgId = new FStockOrgId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FIsConvert = false,
|
||||||
|
FRequireOrgId = new FRequireOrgId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FPurchaseOrgId = new FPurchaseOrgId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FSupplierID = !string.IsNullOrEmpty(supplierCode) ? new FSupplierID()
|
||||||
|
{
|
||||||
|
FNumber = supplierCode
|
||||||
|
} : null,
|
||||||
|
FACCEPTORID = !string.IsNullOrEmpty(supplierCode) ? new FACCEPTORID()
|
||||||
|
{
|
||||||
|
FNumber = supplierCode
|
||||||
|
} : null,
|
||||||
|
FAcceptAddress = acceptAddress,
|
||||||
|
FSettleId = !string.IsNullOrEmpty(supplierCode) ? new FSettleId()
|
||||||
|
{
|
||||||
|
FNumber = supplierCode
|
||||||
|
} : null,
|
||||||
|
FCHARGEID = !string.IsNullOrEmpty(supplierCode) ? new FCHARGEID()
|
||||||
|
{
|
||||||
|
FNumber = supplierCode
|
||||||
|
} : null,
|
||||||
|
FOwnerTypeIdHead = OWNER_TYPE,
|
||||||
|
FOwnerIdHead = new FOwnerIdHead()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FCDateOffsetValue = 0,
|
||||||
|
FAcceptorContactID = null, // 如果需要联系人,可以从其他字段获取
|
||||||
|
FSalOutStockOrgId = new FSalOutStockOrgId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FACCTYPE = ACCT_TYPE,
|
||||||
|
FPURMRBFIN = new FPURMRBFIN()
|
||||||
|
{
|
||||||
|
FSettleOrgId = new FSettleOrgId()
|
||||||
|
{
|
||||||
|
FNumber = orgId
|
||||||
|
},
|
||||||
|
FSettleCurrId = new FSettleCurrId()
|
||||||
|
{
|
||||||
|
FNumber = outHead.CurrencyCode ?? DEFAULT_CURRENCY
|
||||||
|
},
|
||||||
|
FIsIncludedTax = true,
|
||||||
|
FPRICETIMEPOINT = "1",
|
||||||
|
FLOCALCURRID = new FLOCALCURRID()
|
||||||
|
{
|
||||||
|
FNumber = outHead.CurrencyCode ?? DEFAULT_CURRENCY
|
||||||
|
},
|
||||||
|
FEXCHANGETYPEID = new FEXCHANGETYPEID()
|
||||||
|
{
|
||||||
|
FNumber = EXCHANGE_TYPE
|
||||||
|
},
|
||||||
|
FEXCHANGERATE = outHead.CurrencyRate ?? 1m,
|
||||||
|
FISPRICEEXCLUDETAX = true,
|
||||||
|
FHSExchangeRate = 1m
|
||||||
|
},
|
||||||
|
FPURMRBENTRY = entryList
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 构建收货地址
|
||||||
|
/// </summary>
|
||||||
|
private string BuildAcceptAddress(StorageGoodsDocOutHead outHead)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(outHead.ReceiveAddress))
|
||||||
|
{
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// 组合地址信息
|
||||||
|
var addressParts = new List<string>();
|
||||||
|
if (!string.IsNullOrEmpty(outHead.ReceiveProvinceName))
|
||||||
|
addressParts.Add(outHead.ReceiveProvinceName);
|
||||||
|
if (!string.IsNullOrEmpty(outHead.ReceiveCityName))
|
||||||
|
addressParts.Add(outHead.ReceiveCityName);
|
||||||
|
if (!string.IsNullOrEmpty(outHead.ReceiveTownName))
|
||||||
|
addressParts.Add(outHead.ReceiveTownName);
|
||||||
|
if (!string.IsNullOrEmpty(outHead.ReceiveStreetName))
|
||||||
|
addressParts.Add(outHead.ReceiveStreetName);
|
||||||
|
if (!string.IsNullOrEmpty(outHead.ReceiveAddress))
|
||||||
|
addressParts.Add(outHead.ReceiveAddress);
|
||||||
|
|
||||||
|
return string.Join("", addressParts);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@ -23,11 +23,12 @@ namespace MyCode.Project.WebApi.Controllers
|
|||||||
private IPurchaseStockInService _purchaseStockInService;
|
private IPurchaseStockInService _purchaseStockInService;
|
||||||
private ISalesOutboundService _salesOutboundService;
|
private ISalesOutboundService _salesOutboundService;
|
||||||
private ISalesReturnService _salesReturnService;
|
private ISalesReturnService _salesReturnService;
|
||||||
|
private IPurchaseReturnService _purchaseReturnService;
|
||||||
|
|
||||||
public TestController(IJackYunTaskService jackYunTaskService, IWMSService wMSService
|
public TestController(IJackYunTaskService jackYunTaskService, IWMSService wMSService
|
||||||
, IJackYunStockinService jackYunStockinService, IOrderPushService orderPushService
|
, IJackYunStockinService jackYunStockinService, IOrderPushService orderPushService
|
||||||
, IPurchaseStockInService purchaseStockInService, ISalesOutboundService salesOutboundService
|
, IPurchaseStockInService purchaseStockInService, ISalesOutboundService salesOutboundService
|
||||||
, ISalesReturnService salesReturnService)
|
, ISalesReturnService salesReturnService, IPurchaseReturnService purchaseReturnService)
|
||||||
{
|
{
|
||||||
_jackYunTaskService = jackYunTaskService;
|
_jackYunTaskService = jackYunTaskService;
|
||||||
_wMSService = wMSService;
|
_wMSService = wMSService;
|
||||||
@ -36,6 +37,7 @@ namespace MyCode.Project.WebApi.Controllers
|
|||||||
_purchaseStockInService = purchaseStockInService;
|
_purchaseStockInService = purchaseStockInService;
|
||||||
_salesOutboundService = salesOutboundService;
|
_salesOutboundService = salesOutboundService;
|
||||||
_salesReturnService = salesReturnService;
|
_salesReturnService = salesReturnService;
|
||||||
|
_purchaseReturnService = purchaseReturnService;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -78,6 +80,16 @@ namespace MyCode.Project.WebApi.Controllers
|
|||||||
return _salesReturnService.PushSalesReturnToKingDee(id);
|
return _salesReturnService.PushSalesReturnToKingDee(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 测试推送采购退料单到金蝶云星空
|
||||||
|
/// </summary>
|
||||||
|
[HttpGet]
|
||||||
|
[AllowAnonymous]
|
||||||
|
public string TaskSendKingdeePurchaseReturnById(string id)
|
||||||
|
{
|
||||||
|
return _purchaseReturnService.PushPurchaseReturnToKingDee(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#region 调度运行抓吉客云销售订单
|
#region 调度运行抓吉客云销售订单
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user