Commit 9e1f318a by Lee Jaebin

log・コメント内容修正

parent 53f9fea7
......@@ -554,7 +554,7 @@ public class OperationListActivity extends ABVUIActivity {
return;
}
refreshOperationList();
// 作業指示・報告からプロジェクト一覧へ戻った時の同期処理
// 報告画面から作業一覧へ戻った時の同期処理
final long operationId = getUserPref(AppDefType.UserPrefKey.SYNC_TARGET_OPERATION_ID, -1L);
if (operationId != -1) {
final OperationDto operationDto = mOperationLogic.getOperation(operationId);
......@@ -774,7 +774,7 @@ public class OperationListActivity extends ABVUIActivity {
contentPath = ABVEnvironment.getInstance().getPanoImageDirName(ContentFileExtractor.getInstance().getContentCacheDirWithExtract(operationDto.contentId));
}
// プロジェクトの指示/報告表示時、必要なJSONファイル作成
// 作業の報告画面を表示時、必要なJSONファイル作成
mOperationLogic.createJsonForOpenABookCheckPano(operationDto.operationId, operationDto.contentId, contentPath);
mOperationLogic.createJsonForOperationContent(operationDto.operationId, contentPath, operationDto.reportType == ReportType.RoutineTask);
......@@ -869,7 +869,7 @@ public class OperationListActivity extends ABVUIActivity {
}
/**
* プロジェクト同期処理
* 作業同期処理
* @param operationId
* @param reportType
* @param buttonEventFlag
......@@ -906,7 +906,7 @@ public class OperationListActivity extends ABVUIActivity {
if (mOperationLastEditDate != null && reportType == ReportType.RoutineTask) {
if (buttonEventFlag) {
String dialogMsg = null;
// 定期点検プロジェクトの利用可能日付を取得
// 定期点検の利用可能日付を取得
String avilableDateStr = mOperationLogic.getRoutineTaskOperationAvailableDateStr(operationId);
if (!StringUtil.isNullOrEmpty(avilableDateStr)) {
// 利用可能メッセージ
......@@ -2301,7 +2301,7 @@ public class OperationListActivity extends ABVUIActivity {
* カテゴリの一括同期ボタン
*/
public void categoryBatchSync() {
Logger.i(TAG, "---category batch sync start");
Logger.i(TAG, "---batch sync start");
// 作業種別に関連する作業リストを取得
List<OperationDto> operationList = mOperationDao.getNeedSyncOperationByGroupMasterId(getABVUIDataCache().getOperationGroupMasterId());
......@@ -2374,6 +2374,7 @@ public class OperationListActivity extends ABVUIActivity {
if (batchSyncView.checkMaxProgress()) {
// 最後の処理が完了したと見做す
batchSyncView.closeProgressDialog();
Logger.d(TAG, "---batchSync is end");
} else {
// プログレスバーに作業1つ完了をセット
batchSyncView.setProgress(batchSyncView.getProgress() + 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment