// // EditModelPriceViewController.h // RedAnt ERP Mobile // // Created by Ray on 9/16/15. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved. // #import @interface EditModelPriceViewController : UIViewController @property (strong, nonatomic) IBOutlet UITextField *editPrice; @property (strong, nonatomic) IBOutlet UITextField *editDiscount; @property (strong, nonatomic) IBOutlet UILabel *labelDiscount; @property (strong, nonatomic) IBOutlet UILabel *labelCalPrice; @property (strong, nonatomic) IBOutlet UILabel *labelNewPrice; @property double price; @property double discount; @property (strong,nonatomic) NSString* cart_id; @property bool hide_discount; @property (nonatomic , copy) void (^onSetValue)(double price,double discount); @property bool set_watch_list; @end