#TRS-ZS-608 浙商TRS-客户保证金报送

This commit is contained in:
嬴政 时
2025-08-08 16:03:59 +08:00
parent f4ef47e654
commit 49c97fa7b8
5 changed files with 28 additions and 4 deletions
@@ -192,8 +192,15 @@ namespace YLErp.Modules.SystemModule
{
if (item.Key == nameof(Client.AppropriatenessDegree)) { continue; }
_config.selects[item.Key] = yldic.GetList(item.Value, false);
if (item.Key == "meta_ClientTagDesc")
{
_config.selects[item.Key].ToList().ForEach(O =>
{
O.Text = O.Value;
});
}
//行业字段比较特殊,KeyValue需要保持一致;
if (item.Key == nameof(Client.BusinessType) || item.Key == nameof(Client.ProtocolSignVersion))
if (item.Key == nameof(Client.BusinessType) || item.Key == nameof(Client.ProtocolSignVersion) || item.Key == "meta_ClientTag")
{
_config.selects[item.Key].ToList().ForEach(O =>
{
@@ -255,7 +262,7 @@ namespace YLErp.Modules.SystemModule
return null;
}
public static FormEditField GetFormEditFieldByLabel(IEnumerable<FormEditField> FormEditFields,string label)
public static FormEditField GetFormEditFieldByLabel(IEnumerable<FormEditField> FormEditFields, string label)
{
if (FormEditFields != null)
{