// // CustomerInfoViewController.h // RedAnt ERP Mobile // // Created by Ray on 9/10/15. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved. // #import "CommonEditorViewController.h" @interface CustomerInfoViewController : CommonEditorViewController @property (strong,nonatomic) NSString* contactId; @property (strong,nonatomic) NSString* rightbtn_title; @property (strong, nonatomic) IBOutlet UIBarButtonItem *right_btn; @property bool update_order; @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_edit; @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_assign; @property (strong, nonatomic) IBOutlet UIBarButtonItem *btn_reset; @property (nonatomic , copy) void (^onClose)(NSMutableDictionary* value); @property bool edit_icon; @property bool assig_icon; @property bool reset_icon; //@property bool editable; @end