From 7d57bbc3fa684799e6d68753ee60ecb9a87dcdf6 Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 10 Dec 2024 11:49:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9EOffer=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Services/CommonServices.cs | 2 +- Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Tiobon.Core.Services/CommonServices.cs b/Tiobon.Core.Services/CommonServices.cs index cccdff65..a65a7f50 100644 --- a/Tiobon.Core.Services/CommonServices.cs +++ b/Tiobon.Core.Services/CommonServices.cs @@ -1526,7 +1526,7 @@ public partial class CommonServices : BaseServices>, ICommon { display = true, fnKey = "TBD27YN", - fnTitle = "下载", + fnTitle = "Offer下载", fnType = "row", icon = "ess-icon-reject", position = "left" diff --git a/Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs b/Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs index eafc45c5..b398fa33 100644 --- a/Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs +++ b/Tiobon.Core.Services/Ghrh/Ghrh_OfferApplyOrderServices.cs @@ -241,6 +241,10 @@ public class Ghrh_OfferApplyOrderServices : BaseServices().Where(x => x.OrderId == applyOrder.Id).ToListAsync(); } + obj.CurrencyId = await Db.Ado.GetIntAsync(@"SELECT CurrencyID +FROM Ghrc_Currency +WHERE IsDefault = 1 AND IsEnable = 1"); + return ServiceResult.OprateSuccess("查询成功", obj); }