| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // SubmitOrderCell.h
- // IBOSSIPAD
- //
- // Created by iHope on 14-7-18.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ShopCartItemModel.h"
- #import "ShopCartViewController.h"
- @class ShopCartCellDelegate;
- @interface SubmitOrderCell : UITableViewCell
- {
-
-
- }
- @property(strong) IBOutlet UILabel * lblCartID;
- @property(strong) IBOutlet UILabel * lblInventoryID;
- @property(strong) IBOutlet UITextField * txtSalesQuantity;
- @property(strong) IBOutlet UITextField * txtSalesPrice;
- @property(strong) IBOutlet UITextField * txtRemarks;
- @property(strong) IBOutlet UITextField * txtMarkedPrice;
- @property(strong) IBOutlet UILabel * lblSpecification;
- @property(strong) IBOutlet UILabel * lblAcreage;
- @property(strong) IBOutlet UILabel * lblVolume;
- @property(strong) IBOutlet UILabel * lblCodeID;
- @property(strong) IBOutlet UILabel * lblCode;
- @property(strong) IBOutlet UILabel * lblOnlyCode;
- @property(strong) IBOutlet UILabel * lblGradeID;
- @property(strong) IBOutlet UILabel * lblColorNumber;
- @property(strong) IBOutlet UILabel * lblWarehouseID;
- @property(strong) IBOutlet UILabel * lblPositionNumber;
- @property(strong) IBOutlet UILabel * lblWarehouseName;
- @property(strong) IBOutlet UILabel * lblBalanceQuantity;
- @property(strong) IBOutlet UILabel * lblBrandID;
- @property(strong) IBOutlet UILabel * lblBrandName;
- @property(strong) IBOutlet UILabel * lblKindID;
- @property(strong) IBOutlet UILabel * lblKindName;
- @property(strong) IBOutlet UILabel * lblVarietyID;
- @property(strong) IBOutlet UILabel * lblVarietyName;
- @property(strong) IBOutlet UILabel * lblSeriesID;
- @property(strong) IBOutlet UILabel* lblSeriesName;
- @property(strong) IBOutlet UILabel * lblUnitID;
- @property(strong) IBOutlet UILabel * lblUnitName;
- @property(strong) IBOutlet UILabel * lblGradeName;
- @property(nonatomic,strong) NSString *hiddenID;
- - (void) setCheckBackground: (BOOL) checked;
- @property(nonatomic) BOOL isSelect;
- @property(nonatomic) int cellIndex;
- //@property(weak) id<WorkFlowCellDelegate> delegate;
- -(void)ParseInfoModel:(ShopCartItemModel *)model;
- //@property(weak) id<ShopCartCellDelegate> delegate;
- -(void)hideSelect;
- -(void)setReadOnly;
- @end
|