shanji 3 years ago
parent
commit
b50eef04e8
  1. 2
      BBWY.Client/Views/MainWindow.xaml
  2. 2
      BBWY.Server.Business/MDSBusiness.cs
  3. 2
      BBWY.Server.Business/Order/OrderBusiness.cs
  4. 2
      BBWY.Server.Business/Vender/VenderBusiness.cs
  5. 2
      BBWY.Server.Model/Dto/Response/Vender/ShopResponse.cs

2
BBWY.Client/Views/MainWindow.xaml

@ -26,7 +26,7 @@
<!--<TextBlock Text="{Binding GlobalContext.User.TeamName}" Margin="5,0,0,0"/> <!--<TextBlock Text="{Binding GlobalContext.User.TeamName}" Margin="5,0,0,0"/>
<TextBlock Text="{Binding GlobalContext.User.Shop.Platform}" Margin="5,0,0,0"/>--> <TextBlock Text="{Binding GlobalContext.User.Shop.Platform}" Margin="5,0,0,0"/>-->
<TextBlock Text="{Binding GlobalContext.User.Shop.ShopName}" Margin="5,0,0,0"/> <TextBlock Text="{Binding GlobalContext.User.Shop.ShopName}" Margin="5,0,0,0"/>
<TextBlock Text="v10021" Margin="5,0,0,0"/> <TextBlock Text="v10022" Margin="5,0,0,0"/>
</StackPanel> </StackPanel>
</Border> </Border>
<Grid Grid.Row="1"> <Grid Grid.Row="1">

2
BBWY.Server.Business/MDSBusiness.cs

@ -43,7 +43,7 @@ namespace BBWY.Server.Business
AppSecret = shopJToken.Value<string>("AppSecret"), AppSecret = shopJToken.Value<string>("AppSecret"),
AppToken = shopJToken.Value<string>("AppToken"), AppToken = shopJToken.Value<string>("AppToken"),
PlatformId = (Enums.Platform)shopJToken.Value<int>("PlatformId"), PlatformId = (Enums.Platform)shopJToken.Value<int>("PlatformId"),
VenderType = shopJToken.Value<string>("ShopType"), ShopType = shopJToken.Value<string>("ShopType"),
ShopId = shopId.ToString(), ShopId = shopId.ToString(),
ShopName = shopJToken.Value<string>("ShopName"), ShopName = shopJToken.Value<string>("ShopName"),
ManagePwd = shopJToken.Value<string>("ManagePwd") ManagePwd = shopJToken.Value<string>("ManagePwd")

2
BBWY.Server.Business/Order/OrderBusiness.cs

@ -927,7 +927,7 @@ namespace BBWY.Server.Business
PageIndex = 1, PageIndex = 1,
PageSize = 100, PageSize = 100,
Platform = shop.PlatformId, Platform = shop.PlatformId,
JDColType = string.IsNullOrEmpty(shop.VenderType) ? "0" : shop.VenderType, JDColType = string.IsNullOrEmpty(shop.ShopType) ? "0" : shop.ShopType,
SaveResponseLog = true, SaveResponseLog = true,
OrderId = orderId OrderId = orderId
}, null, HttpMethod.Post); }, null, HttpMethod.Post);

2
BBWY.Server.Business/Vender/VenderBusiness.cs

@ -190,7 +190,7 @@ namespace BBWY.Server.Business
PlatformCommissionRatio = x.PlatformCommissionRatio, PlatformCommissionRatio = x.PlatformCommissionRatio,
ShopId = x.ShopId, ShopId = x.ShopId,
ShopName = x.ShopName, ShopName = x.ShopName,
VenderType = x.ShopType ShopType = x.ShopType
}).ToList() }).ToList()
}; };
departmentList.Add(department); departmentList.Add(department);

2
BBWY.Server.Model/Dto/Response/Vender/ShopResponse.cs

@ -15,7 +15,7 @@ namespace BBWY.Server.Model.Dto
/// <summary> /// <summary>
/// 商家类型 /// 商家类型
/// </summary> /// </summary>
public string VenderType { get; set; } public string ShopType { get; set; }
/// <summary> /// <summary>
/// 店铺平台 /// 店铺平台

Loading…
Cancel
Save