Fixed an incorrect calulation
The calculations used in the reports were calulating based off the owed column which mathematically did not make sense since we are looking for the daily.
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Ophelias.Expressions
|
||||
* Basic check to make sure money is in US format. 300.20/ 0.00 etc.
|
||||
*/
|
||||
internal static Regex CardRx = new(@"^[0-9]{16}$", RegexOptions.Compiled);
|
||||
internal static Regex ExpriationRx = new(@"^(0?[1-9]|1[012])/[2-9][0-9]{1}$", RegexOptions.Compiled);
|
||||
internal static Regex ExpriationRx = new(@"^(0?[1-9]|1[012])/2[0-9]{1}$", RegexOptions.Compiled);
|
||||
internal static Regex CCVRx = new(@"^[0-9]{3}$", RegexOptions.Compiled);
|
||||
internal static Regex MoneyRx = new(@"^(\d+\.\d{2}|\d+)$", RegexOptions.Compiled);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user