| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // NotificationNameCenter.m
- // iSales-NPD
- //
- // Created by Jack on 16/9/9.
- // Copyright © 2016年 United Software Applications, Inc. All rights reserved.
- //
- #import "NotificationNameCenter.h"
- @implementation NotificationNameCenter
- const NSString *LoginOK_HandleUrgencyFile_Notification = @"LoginOK_HandleUrgencyFile_Notification";
- const NSString *Change_Price_Type_Notification = @"Change_Price_Type_Notification";
- const NSString *No_Rights_Notification = @"No_Rights_Notification";
- const NSString *Lock_Permission_Notification = @"Lock_Permission_Notification";
- const NSString *unLock_Permission_Notification = @"unLock_Permission_Notification";
- const NSString *User_LoginOK_Notification = @"User_LoginOK_Notification";
- const NSString *RA_NOTIFICATION_REFRESH_UI = @"RA_NOTIFICATION_REFRESH_UI";
- const NSString *RA_NOTIFICATION_RELOAD_DATA = @"RA_NOTIFICATION_RELOAD_DATA";
- //const NSString *RA_NOTIFICATION_SHOW_PRICE = @"RA_NOTIFICATION_SHOW_PRICE";
- //const NSString *RA_NOTIFICATION_HIDE_PRICE = @"RA_NOTIFICATION_HIDE_PRICE";
- const NSString *RA_NOTIFICATION_UPDATE_PRICE = @"RA_NOTIFICATION_UPDATE_PRICE";
- //const NSString *RA_NOTIFICATION_SCANNER_DECODE = @"RA_NOTIFICATION_SCANNER_DECODE";
- const NSString *RA_NOTIFICATION_CLEAR_DATA = @"RA_NOTIFICATION_CLEAR_DATA";
- const NSString *RA_NOTIFICATION_RELEASE_SCANNER = @"RA_NOTIFICATION_RELEASE_SCANNER";
- @end
|