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