mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Add PosViewType enum
This commit is contained in:
@@ -1,5 +1,16 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Converters;
|
||||||
|
|
||||||
namespace BTCPayServer.Client.Models
|
namespace BTCPayServer.Client.Models
|
||||||
{
|
{
|
||||||
|
public enum PosViewType
|
||||||
|
{
|
||||||
|
Static,
|
||||||
|
Cart,
|
||||||
|
Light,
|
||||||
|
Print
|
||||||
|
}
|
||||||
|
|
||||||
public class CreateAppRequest
|
public class CreateAppRequest
|
||||||
{
|
{
|
||||||
public string AppName { get; set; }
|
public string AppName { get; set; }
|
||||||
@@ -12,7 +23,8 @@ namespace BTCPayServer.Client.Models
|
|||||||
public string Title { get; set; } = null;
|
public string Title { get; set; } = null;
|
||||||
public string Description { get; set; } = null;
|
public string Description { get; set; } = null;
|
||||||
public string Template { get; set; } = null;
|
public string Template { get; set; } = null;
|
||||||
public string DefaultView { get; set; } = null;
|
[JsonConverter(typeof(StringEnumConverter))]
|
||||||
|
public PosViewType DefaultView { get; set; }
|
||||||
public bool ShowCustomAmount { get; set; } = true;
|
public bool ShowCustomAmount { get; set; } = true;
|
||||||
public bool ShowDiscount { get; set; } = true;
|
public bool ShowDiscount { get; set; } = true;
|
||||||
public bool EnableTips { get; set; } = true;
|
public bool EnableTips { get; set; } = true;
|
||||||
|
|||||||
@@ -52,12 +52,10 @@ namespace BTCPayServer.Controllers.Greenfield
|
|||||||
AppType = AppType.PointOfSale.ToString()
|
AppType = AppType.PointOfSale.ToString()
|
||||||
};
|
};
|
||||||
|
|
||||||
Enum.TryParse(request.DefaultView, out PosViewType defaultView);
|
|
||||||
|
|
||||||
appData.SetSettings(new PointOfSaleSettings
|
appData.SetSettings(new PointOfSaleSettings
|
||||||
{
|
{
|
||||||
Title = request.Title,
|
Title = request.Title,
|
||||||
DefaultView = defaultView,
|
DefaultView = (Services.Apps.PosViewType)request.DefaultView,
|
||||||
ShowCustomAmount = request.ShowCustomAmount,
|
ShowCustomAmount = request.ShowCustomAmount,
|
||||||
ShowDiscount = request.ShowDiscount,
|
ShowDiscount = request.ShowDiscount,
|
||||||
EnableTips = request.EnableTips,
|
EnableTips = request.EnableTips,
|
||||||
|
|||||||
Reference in New Issue
Block a user