| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // OtherInStorageGoodsListCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/25.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OtherInStorageGoodsSearchListModel.h"
- #import "OrderQuantity.h"
- @interface OtherInStorageGoodsListCell : UITableViewCell<UITextFieldDelegate>
- @property(nonatomic,strong) UILabel *lblGoodsName;
- @property(nonatomic,strong) UIButton *btnDelete;
- @property(nonatomic,strong) UIView *topSeparator;
- @property(nonatomic,strong) UILabel *lblGoodsCode;
- @property(nonatomic,strong) UILabel *lblOnlyCode;
- @property(nonatomic,strong) UITextField *txtColorNumber;
- @property(nonatomic,strong) UILabel *lblSpecification;
- @property(nonatomic,strong) UILabel *lblGrade;
- @property(nonatomic,strong) UILabel *lblBrand;
- @property(nonatomic,strong) UILabel *lblWarehouse;
- @property(nonatomic,strong) UILabel *lblPostionNumber;
- @property(nonatomic,strong) UIView *middleSeparator;
- @property(nonatomic,strong) UILabel *lblCanSalesQuantity;
- @property(nonatomic,strong) UILabel *lblInventoryQuantity;
- @property(nonatomic,strong) UITextField *txtEnterQuantity;
- @property(nonatomic,strong) UITextField *txtEnterPrice;
- @property(nonatomic,strong) UIButton *btnAddQuantity;
- @property(nonatomic,strong) UIButton *btnSubtractQuantity;
- @property(nonatomic,strong) UIView *bottomSeparator;
- @property(nonatomic,assign) NSInteger index;
- @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
- @property(nonatomic,strong) OtherInStorageGoodsSearchListModel* inStorageGoodsListModel;
- -(void)setOtherInStorageGoodsModel:(OtherInStorageGoodsSearchListModel*) goodsListModel;
- @end
|