fixed PermitFacts CSV Export button
This commit is contained in:
@@ -34,9 +34,6 @@ class SearchHistory extends Base {
|
||||
$user = $this->current_user_serial;
|
||||
$subscription_serial = $searchpayload['subscription_serial'];
|
||||
|
||||
echo $subscription_serial;
|
||||
die();
|
||||
|
||||
switch ($subscription_serial) {
|
||||
|
||||
case 1:
|
||||
|
||||
+18
-11
@@ -38,7 +38,8 @@ $(document).ready(function () {
|
||||
'undo',
|
||||
'redo',
|
||||
'|'
|
||||
]},
|
||||
]
|
||||
},
|
||||
link: {
|
||||
addTargetToExternalLinks: true,
|
||||
defaultProtocol: "http://"
|
||||
@@ -58,23 +59,28 @@ $(document).ready(function () {
|
||||
// Date Pickers
|
||||
// ------------
|
||||
|
||||
$("#alert_starts_date").datepicker({format: "yyyy-mm-dd",
|
||||
$("#alert_starts_date").datepicker({
|
||||
format: "yyyy-mm-dd",
|
||||
container: "div.starts-date",
|
||||
keyboardNavigation: false,
|
||||
autoclose: true,
|
||||
orientation: "bottom",
|
||||
todayBtn: "linked",
|
||||
todayHighlight: true});
|
||||
todayHighlight: true
|
||||
});
|
||||
|
||||
$("#alert_expires_date").datepicker({format: "yyyy-mm-dd",
|
||||
$("#alert_expires_date").datepicker({
|
||||
format: "yyyy-mm-dd",
|
||||
container: "div.expires-date",
|
||||
keyboardNavigation: false,
|
||||
autoclose: true,
|
||||
orientation: "bottom",
|
||||
todayBtn: "linked",
|
||||
todayHighlight: true});
|
||||
todayHighlight: true
|
||||
});
|
||||
|
||||
$("#alert_starts_time").inputmask({alias: "datetime",
|
||||
$("#alert_starts_time").inputmask({
|
||||
alias: "datetime",
|
||||
placeholder: "HH:MM",
|
||||
inputFormat: "HH:MM",
|
||||
insertMode: false,
|
||||
@@ -82,7 +88,8 @@ $(document).ready(function () {
|
||||
hourFormat: 24
|
||||
});
|
||||
|
||||
$("#alert_expires_time").inputmask({alias: "datetime",
|
||||
$("#alert_expires_time").inputmask({
|
||||
alias: "datetime",
|
||||
placeholder: "HH:MM",
|
||||
inputFormat: "HH:MM",
|
||||
insertMode: false,
|
||||
@@ -197,10 +204,10 @@ $(document).ready(function () {
|
||||
return false;
|
||||
}
|
||||
|
||||
// if (isBlank(alert_message)) {
|
||||
// createInputError(alert_message, "Please enter a Message");
|
||||
// return false;
|
||||
// }
|
||||
// if (isBlank(alert_message)) {
|
||||
// createInputError(alert_message, "Please enter a Message");
|
||||
// return false;
|
||||
// }
|
||||
|
||||
if (!checkDateTime(alert_starts_date, alert_starts_time, alert_expires_date, alert_expires_time)) {
|
||||
createInputError(alert_expires_time, "Cannot be prior to Start");
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
// ==========
|
||||
// Add County
|
||||
// ==========
|
||||
// ===================
|
||||
// Search Permit Facts
|
||||
// ===================
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
@@ -246,7 +246,7 @@ $(document).ready(function () {
|
||||
|
||||
$("#spinner-dialog").modal("show");
|
||||
|
||||
$sessionStorage.action = "Export_PermitFactsToExcel.export";
|
||||
$sessionStorage.action = "Export_PermitFactsToCSV.export";
|
||||
$sessionStorage.subscription_reference = $sessionStorage.subscription_serial;
|
||||
$sessionStorage.pagination = "off";
|
||||
|
||||
|
||||
@@ -5,4 +5,3 @@ require_once "classes/Base.php";
|
||||
session_start();
|
||||
|
||||
(new Base())->do();
|
||||
?>
|
||||
+8
-7
@@ -6,16 +6,16 @@
|
||||
|
||||
<!-- Database Credentials -->
|
||||
|
||||
<DatabaseServer>192.168.1.190</DatabaseServer>
|
||||
<!--<DatabaseServer>localhost</DatabaseServer>-->
|
||||
<!--<DatabaseServer>192.168.1.190</DatabaseServer>-->
|
||||
<DatabaseServer>localhost</DatabaseServer>
|
||||
<DatabaseName>realestatedatainc</DatabaseName>
|
||||
<DatabaseUser>ddruser</DatabaseUser>
|
||||
<DatabasePassword>hype23decdr</DatabasePassword>
|
||||
|
||||
<!-- Legacy Database Credentials -->
|
||||
|
||||
<OldDatabaseServer>192.168.1.190</OldDatabaseServer>
|
||||
<!--<DatabaseServer>localhost</DatabaseServer>-->
|
||||
<!--<OldDatabaseServer>192.168.1.190</OldDatabaseServer>-->
|
||||
<DatabaseServer>localhost</DatabaseServer>
|
||||
<OldDatabaseName>decweb</OldDatabaseName>
|
||||
<OldDatabaseUser>decuser</OldDatabaseUser>
|
||||
<OldDatabasePassword>hype23dec</OldDatabasePassword>
|
||||
@@ -29,7 +29,8 @@
|
||||
|
||||
<!-- Discord Webhook -->
|
||||
|
||||
<DiscordWebHookURL>https://discordapp.com/api/webhooks/1396804024942198794/zdT2wisqhAZuZ_UPKmAmtV0z_rX-PZnyHIXsjpPHQO3uakBO2xQ3R44kOxb9QZ4QxebL</DiscordWebHookURL>
|
||||
<DiscordWebHookURL>
|
||||
https://discordapp.com/api/webhooks/1396804024942198794/zdT2wisqhAZuZ_UPKmAmtV0z_rX-PZnyHIXsjpPHQO3uakBO2xQ3R44kOxb9QZ4QxebL</DiscordWebHookURL>
|
||||
|
||||
<SupportEmail>james.richie@onesourceits.com</SupportEmail>
|
||||
<AdminEmail>allenf@bidalert.com</AdminEmail>
|
||||
@@ -42,8 +43,8 @@
|
||||
<SystemAdministrator>DSYSADMIN</SystemAdministrator>
|
||||
</SystemAdministrators>
|
||||
|
||||
<Environment>Development</Environment>
|
||||
<!--<Environment>Production</Environment>-->
|
||||
<!--<Environment>Development</Environment>-->
|
||||
<Environment>Production</Environment>
|
||||
<Availability>Available</Availability>
|
||||
|
||||
</Settings>
|
||||
Reference in New Issue
Block a user