-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayData.cs
More file actions
40 lines (28 loc) · 1005 Bytes
/
PayData.cs
File metadata and controls
40 lines (28 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections;
using System.Diagnostics.Eventing.Reader;
using System.Dynamic;
using System.Security.Cryptography;
using System.Text;
using DotNetNuke.Common;
using DotNetNuke.Entities.Portals;
using Nevoweb.DNN.NBrightBuy.Components;
namespace NBrightProject.DNN.NBrightStore
{
public class PayData
{
public PayData(OrderData oInfo)
{
LoadSettings(oInfo);
}
public void LoadSettings(OrderData oInfo)
{
var settings = ProviderUtils.GetProviderSettings("DPSPaymentProviderpayment");
var appliedtotal = oInfo.PurchaseInfo.GetXmlPropertyDouble("genxml/appliedtotal");
var alreadypaid = oInfo.PurchaseInfo.GetXmlPropertyDouble("genxml/alreadypaid");
var PostUrl = oInfo.PurchaseInfo.GetXmlPropertyDouble("genxml/posturl");
var orderTotal = (appliedtotal - alreadypaid).ToString("0.00");
}
public string PostUrl { get; set; }
}
}