|
|
|
@ -176,6 +176,8 @@ public class SignInAccountServiceImpl implements SignInAccountService, Applicati
|
|
|
|
|
client.put("client_less_file", true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
client.put("client_less_file", true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (client.getInteger("parent_client_id") != null) {
|
|
|
|
@ -694,6 +696,16 @@ public class SignInAccountServiceImpl implements SignInAccountService, Applicati
|
|
|
|
|
result.put(fileKey,fileJson);
|
|
|
|
|
clientFilesIsLess = true;
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
clientFilesIsLess = true;
|
|
|
|
|
for (int c = 0; c < FILE_KEYS.length; c++) {
|
|
|
|
|
String key = FILE_KEYS[c];
|
|
|
|
|
JSONObject fileJson = new JSONObject();
|
|
|
|
|
fileJson.put("key", PUT_KEYS[c]);
|
|
|
|
|
fileJson.put("name", FILE_NAMES[c]);
|
|
|
|
|
fileJson.put("file_write", true);
|
|
|
|
|
result.put(key,fileJson);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result.put("client_less_file", clientFilesIsLess);
|
|
|
|
|
if (clientFilesIsLess) {
|
|
|
|
|