Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cost history enhancements #30

Merged
merged 8 commits into from
Apr 17, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install/manual_upgrade_1_3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Update the resources module codebase
-Check out the new code through GitHub https://github.com/ndlibersa/resources/
-If needed manually copy and overwrite all the files into the exiting resources directory.
-Do not replace the existing directory. This will cause you to lose any settings, documents, etc. That you may have. Copying the new files over the existing files and replacing them will ensure you get the changes needed but not removing additional files.
-Ensure that your your configuration file (/admin/configuration.ini) is still correct.
-Ensure that your configuration file (/admin/configuration.ini) is still correct.

Update the database schema

Expand Down
6 changes: 6 additions & 0 deletions js/forms/costForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,12 @@ $(function(){
$('.newPaymentTable').children().children().children().children('.invoiceNum').val('');


// Remove datepickers from clone
originalTR.find('.dp-choose-date').remove();

// Re-add date pickers to clone
originalTR.find('.date-pick').datePicker({startDate:'01/01/1996'});

return false;
}
});
Expand Down