| 1234567891011121314151617181920212223242526272829303132 |
- //
- // NewSalesExternalCoordinateCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/27.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ExternalCoordinateGoodsModel.h"
- #import "NSString+Tools.h"
- #import "OrderListDelegate.h"
- @interface NewSalesExternalCoordinateCell : UITableViewCell<UITextFieldDelegate>
- @property(nonatomic,strong)UILabel *lblSupplier;
- @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 *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) id<OrderListDelegate> orderDelegate;
- @property(nonatomic,strong) ExternalCoordinateGoodsModel *externalCoordinateModel;
- - (void)setNewExternalCoordinateGoodsCell:(ExternalCoordinateGoodsModel *)externalCoordinateGoodsModel editStatus:(NSInteger) editStatus editFlag:(NSInteger) editFlag;
- @end
|