// // OrderInfoRModelCell.h // RedAnt ERP Mobile // // Created by Ray on 14-7-12. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved. // #import #import "StrikethroughLabel.h" @interface CommonEditorCellModel : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *imgModel; @property (strong, nonatomic) IBOutlet UILabel *labelID; @property (strong, nonatomic) IBOutlet UILabel *labelDescription; @property (strong, nonatomic) IBOutlet UILabel *labelSubtype; @property (strong, nonatomic) IBOutlet UILabel *labelUnitPrice; @property (strong, nonatomic) IBOutlet UILabel *labelCount; @property (strong, nonatomic) IBOutlet UILabel *labelTotalPrice; @property (strong, nonatomic) IBOutlet UILabel *labelMasterPack; @property (strong, nonatomic) IBOutlet UILabel *labelDiscount; @property (strong, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice; @property (strong, nonatomic) IBOutlet UIButton *buttonBundle; @property (strong, nonatomic) NSDictionary* bundle_item; @property (strong, nonatomic) IBOutlet UILabel *avalibilityLabel; @property (weak, nonatomic) IBOutlet UILabel *labelmPack; @property (strong, nonatomic) IBOutlet UIButton *masterBtn; @property (nonatomic,strong) NSDictionary *master_items; @property (weak, nonatomic) IBOutlet UILabel *labelBackOrder; @end