| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // NewSalesGoodsDetailCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/27.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "InventoryModel.h"
- #import "NSString+Tools.h"
- #import "OrderListDelegate.h"
- #import "OrderQuantity.h"
- #define orderTextFont [UIFont systemFontOfSize:13]
- @interface NewSalesGoodsDetailCell : UITableViewCell<UITextFieldDelegate>
- @property(nonatomic,strong)UILabel *lblGoodsName;
- @property(nonatomic,strong)UIView *vDelete;
- @property(nonatomic,strong)UIView *topSeparator;
- @property(nonatomic,strong)UILabel *lblGoodsCode;
- @property(nonatomic,strong)UILabel *lblOnlyCode;
- @property(nonatomic,strong)UILabel *lblColorNumber;
- @property(nonatomic,strong)UILabel *lblSpecification;
- @property(nonatomic,strong)UILabel *lblWarehouseArea;
- @property(nonatomic,strong)UITextField *txtRemarks;
- @property(nonatomic,strong)UIButton *btnUsePosition;
- @property(nonatomic,strong)UILabel *lblGrade;
- @property(nonatomic,strong)UIView *middleSeparator;
- @property(nonatomic,strong)UILabel *lblDiscount;
- @property(nonatomic,strong) UITextField *txtSalesPrice;
- @property(nonatomic,strong) UITextField *txtSalesQuantity;
- @property(nonatomic,strong)UIView *bottomSeparator;
- @property(nonatomic,assign) NSInteger cellIndex;
- @property(nonatomic,strong) InventoryModel *inventoryModel;
- @property(nonatomic,assign) int editStatus;
- @property(nonatomic,strong) id<OrderListDelegate> orderDelegate;
- - (void)setInventoryCell:(InventoryModel *)inventoryDetailModel editStatus:(int)flag editFlag:(int) editFlag;
- @end
|