// // OrderDetailModelCell.h // RedAnt ERP Mobile // // Created by Ray on 8/28/15. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved. // #import #import "StrikethroughLabel.h" @interface OrderDetailModelCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIButton *imgbtn; @property (strong, nonatomic) IBOutlet UILabel *descriptionLabel; @property (strong, nonatomic) IBOutlet UILabel *unitpriceLabel; @property (strong, nonatomic) IBOutlet UILabel *qtyLabel; @property (strong, nonatomic) IBOutlet UILabel *subtotalLabel; @property (strong, nonatomic) IBOutlet UILabel *statusLabel; @property (strong, nonatomic) IBOutlet UILabel *noteLabel; @property (strong, nonatomic) IBOutlet UIButton *buttonBundle; @property (strong, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice; @property (strong, nonatomic) IBOutlet UILabel *labelDiscount; @property (strong, nonatomic) NSDictionary* bundle_item; @property (nonatomic,copy) NSString *imageName;///<图片标识 @property (strong, nonatomic) IBOutlet UIButton *masterBtn; @property (nonatomic,strong) NSDictionary *master_items; @end