| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // SalesOutStorageListCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/10.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesOutStorageListModel.h"
- #import "NSString+Tools.h"
- #import "SalesOutStorageListModel.h"
- #define orderTextFont [UIFont systemFontOfSize:13]
- @protocol SalesOutStorageListCellDelegate <NSObject>
- @optional
- -(void) goCorrect:(SalesOutStorageListModel *)model;
- -(void)goDetail:(SalesOutStorageListModel*)model;
- @end
- @interface SalesOutStorageListCell : UITableViewCell
- @property(nonatomic,strong)SalesOutStorageListModel* outStorageModel;
- @property(nonatomic,strong) UILabel *lblOutStorageNo;
- @property(nonatomic,strong) UILabel *lblOutStorageStatus;
- @property (nonatomic, strong) UIView *topSeparatorView;
- @property(nonatomic,strong) UILabel *lblCustomerName;
- @property(nonatomic,strong) UILabel *lblCustomerTelephone;
- @property(nonatomic,strong) UILabel *lblCustomerCode;
- @property(nonatomic,strong) UILabel *lblStaff;
- @property(nonatomic,strong) UILabel *lblBusinessDepartment;
- @property(nonatomic,strong) UILabel *lblCreater;
- @property(nonatomic,strong) UILabel *lblAccountDate;
- @property(nonatomic,strong) UILabel *lblCustomerAddress;
- @property(nonatomic,strong) UILabel *lblGoodsQuantity;
- @property (nonatomic, strong) UIView *middleSeparatorView;
- @property(nonatomic,strong) UIButton *btnGoodsDetail;
- @property(nonatomic,strong) UIButton *btnCorrect;
- @property (nonatomic, strong) UIView *bottomSeparatorView;
- @property(nonatomic,weak) id<SalesOutStorageListCellDelegate> salesOutStorageDelegate;
- - (void)setSalesOutStorageModel:(SalesOutStorageListModel *)salesOutStorageModel;
- @end
|