| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // ScanCartItemCell.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/21/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "StrikethroughLabel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanCartItemCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *labelModel;
- @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
- @property (weak, nonatomic) IBOutlet UILabel *labelUnitPrice;
- @property (weak, nonatomic) IBOutlet UILabel *labelSubtotal;
- @property (weak, nonatomic) IBOutlet UILabel *labelMpack;
- @property (weak, nonatomic) IBOutlet UITextField *editQTY;
- @property (weak, nonatomic) IBOutlet UIStepper *setpperQTY;
- @property (weak, nonatomic) IBOutlet UILabel *labelNotes;
- @property double unit_price;
- @property double discount;
- @property bool noprice;
- @property (strong,nonatomic) NSString* cart_id;
- @property int pre_val;
- -(void) set_Count:(int) count;
- -(void) init_Stepper:(int) step max:(int) max min:(int)min value:(int)value;
- @property (weak, nonatomic) IBOutlet UIButton *btnScanDiscount;
- @property (nonatomic , copy) void (^onReturnQTY)(int qty , NSDictionary* ext);
- @property (weak, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice;
- @end
- NS_ASSUME_NONNULL_END
|