Уже устарело, все переведено в Issue
09.11.2012
#ОСТАЛОСЬ:
Мобильная версия
Загрузка резюме
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- Import tasks from Things to OmniFocus | |
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- | |
| -- Script taken from: http://forums.omnigroup.com/showthread.php?t=14846&page=2 && https://gist.github.com/cdzombak/11265615 | |
| -- Added: OF3 & Things 3 compatibility; task order; areas/folders; tags | |
| -- Empty your Things Trash first. | |
| -- |
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- Import tasks from Things to OmniFocus | |
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- | |
| -- Script taken from: http://forums.omnigroup.com/showthread.php?t=14846&page=2 | |
| -- Added: creation date, due date, start date functionality | |
| -- Empty your Things Trash first. | |
| -- Note that this won't move over scheduled recurring tasks. |
| type MethodDecorator = (target: any, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) => | |
| TypedPropertyDescriptor | void; | |
| type AssertFn = (...args: Array<any>) => void; | |
| class TSContract { | |
| private static isCustomContractInterruptionCb: boolean = false; | |
| private static contractInterruptionCb(message: string): void { | |
| console.warn(message); |
| protected ClientAddress[] LoadClientAddresses() | |
| { | |
| // SessionData.System может быть не заданым? | |
| if (SessionData.System.Client == null) return new ClientAddress[0]; | |
| List<ClientAddress> clientAddressList = new List<ClientAddress>(); | |
| // _readOnlyDeliveryService, SessionData.System.Client или SessionData.System.Locality | |
| ClientAddress[] clientAddresses = _readOnlyDeliveryService.GetClientAddressesByDeliveryLocality(SessionData.System.Client.PhoneNumber, SessionData.System.Locality.Id); |
Уже устарело, все переведено в Issue
09.11.2012
#ОСТАЛОСЬ:
Мобильная версия
Загрузка резюме