George Williams 4 years ago
parent
commit
661feeb7a6

+ 1
- 0
UnivateProperties_API/Containers/Property/GroupFields.cs View File

8
         public string Type { get; set; }
8
         public string Type { get; set; }
9
         public string Value { get; set; }                        
9
         public string Value { get; set; }                        
10
         public int ItemID { get; set; }
10
         public int ItemID { get; set; }
11
+        public int Rank { get; set; }
11
         #endregion
12
         #endregion
12
     }
13
     }
13
 }
14
 }

+ 1623
- 0
UnivateProperties_API/Migrations/20200914092358_Update.Designer.cs
File diff suppressed because it is too large
View File


+ 17
- 0
UnivateProperties_API/Migrations/20200914092358_Update.cs View File

1
+using Microsoft.EntityFrameworkCore.Migrations;
2
+
3
+namespace UnivateProperties_API.Migrations
4
+{
5
+    public partial class Update : Migration
6
+    {
7
+        protected override void Up(MigrationBuilder migrationBuilder)
8
+        {
9
+
10
+        }
11
+
12
+        protected override void Down(MigrationBuilder migrationBuilder)
13
+        {
14
+
15
+        }
16
+    }
17
+}

+ 1
- 1
UnivateProperties_API/Model/Communication/Email.cs View File

47
                     SenderId = template.SenderId.Value;
47
                     SenderId = template.SenderId.Value;
48
                 }
48
                 }
49
                 Sender = template.Sender;
49
                 Sender = template.Sender;
50
-                To = "jplouw@provision-sa.com"; // sendTo.Email;
50
+                To = "abigaildf@provision-sa.com"; // sendTo.Email;
51
                 ToDisplay = sendTo.FullName;
51
                 ToDisplay = sendTo.FullName;
52
                 /*BCC = ConcatEmails(template.AgentBCC, template.IndividualBCC);*/
52
                 /*BCC = ConcatEmails(template.AgentBCC, template.IndividualBCC);*/
53
                 IsBodyHtml = true;
53
                 IsBodyHtml = true;

+ 1
- 1
UnivateProperties_API/Repository/Financial/PaygateRepository.cs View File

36
 
36
 
37
             string amm = Math.Round((total * 100)).ToString();
37
             string amm = Math.Round((total * 100)).ToString();
38
             string currenc = "ZAR";
38
             string currenc = "ZAR";
39
-            string retUrl = "http://localhost:57260/api/redirect";
39
+            string retUrl = "http://training.provision-sa.com:82/api/redirect";
40
             string transDate = utcDate;
40
             string transDate = utcDate;
41
             string loc = "en-za";
41
             string loc = "en-za";
42
             string count = "ZAF";
42
             string count = "ZAF";

+ 3
- 1
UnivateProperties_API/Repository/Properties/UserDefinedGroupRepository.cs View File

136
                         {
136
                         {
137
                             ID = field.Id,
137
                             ID = field.Id,
138
                             Name = field.FieldName,
138
                             Name = field.FieldName,
139
-                            Type = field.FieldType
139
+                            Type = field.FieldType,
140
+                            Rank = field.Rank
140
                         });
141
                         });
141
                     }
142
                     }
143
+                   
142
                 }
144
                 }
143
             }
145
             }
144
 
146
 

Loading…
Cancel
Save