|
@@ -102,7 +102,8 @@ function createPhrData(patientIdx, phrType, phrValue, phrValue2) {
|
|
|
function retrievePhrData() {
|
|
|
var phrType = $("#phrTypeSelect option:selected").val();
|
|
|
var phrName = $("#phrTypeSelect option:selected").text();
|
|
|
- var params = {patientIdx: ${patientIdx}, phrType: phrType};
|
|
|
+ var ignoreCache = moment().unix();
|
|
|
+ var params = {patientIdx: ${patientIdx}, phrType: phrType, ignoreCache:ignoreCache};
|
|
|
|
|
|
$.ajax({
|
|
|
url : "./api/phrDatas",
|
|
@@ -308,7 +309,8 @@ function createSymptomData(symptomObject) {
|
|
|
}
|
|
|
|
|
|
function retrieveSymptomData() {
|
|
|
- var params = {patientIdx: ${patientIdx}};
|
|
|
+ var ignoreCache = moment().unix();
|
|
|
+ var params = {patientIdx: ${patientIdx}, ignoreCache:ignoreCache};
|
|
|
|
|
|
$.ajax({
|
|
|
url : "./api/symptomDatas",
|
|
@@ -397,7 +399,8 @@ function createMemoData(memoContent) {
|
|
|
}
|
|
|
|
|
|
function retrieveMemoData() {
|
|
|
- var params = {patientIdx: ${patientIdx}};
|
|
|
+ var ignoreCache = moment().unix();
|
|
|
+ var params = {patientIdx: ${patientIdx}, ignoreCache:ignoreCache};
|
|
|
|
|
|
$.ajax({
|
|
|
url : "./api/memoDatas",
|