| 123456789101112131415161718192021222324252627 |
- //
- // OrderDetailModelCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/28/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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;///<图片标识
- @end
|