[ios] Added todo.

This commit is contained in:
VladiMihaylenko 2016-06-10 12:36:53 +03:00 committed by Vladimir Byko-Ianko
parent b5509ce01f
commit 53e3579e2d
2 changed files with 3 additions and 1 deletions

View file

@ -244,7 +244,7 @@ using namespace storage;
}
failure:^
{
//TODO(Vlad): Process error.
// TODO(Vlad): Process an error.
}];
}
else

View file

@ -145,6 +145,8 @@ void initFieldsMap()
}
NSNumberFormatter * decimalFormatter = [[NSNumberFormatter alloc] init];
decimalFormatter.numberStyle = NSNumberFormatterDecimalStyle;
// TODO(Vlad): We will replace this string with [NSString stringWithFormat:L(@"place_page_starting_from"), currency]
// as soon as string is ready.
self.bookingOnlinePrice = [currencyFormatter stringFromNumber:[decimalFormatter numberFromString:@(minPrice.c_str())]];
completion();
});