| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // OrderDetailViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/24.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "HistoryOrderViewController.h"
- #import "ShopCartModel.h"
- #define orderTextFont [UIFont systemFontOfSize:14]
- @interface OrderDetailViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,strong) ASIDownManager *mDownManager;//网络数据管理类
- @property(nonatomic,strong) NSArray *detailArr;//订单细节数组
- @property(nonatomic,strong) UILabel *lblOrderNo;//订单号
- @property(nonatomic,strong) UILabel *lblCustomerCode;//客户编码
- @property(nonatomic,strong) UILabel *lblCustomerName;//客户名称
- @property(nonatomic,strong) UILabel *lblCustomerAddress;//客户地址
- @property(nonatomic,strong) UILabel *lblChannelName;//渠道
- @property(nonatomic,strong) UILabel *lblGoodsAmount;//货物总额
- @property(nonatomic,strong) UILabel *lblDiscountAmount;//折扣数
- @property(nonatomic,strong) UILabel *lblCustomerTypeName;//客户性质
- @property(strong,nonatomic) ShopCartModel *cartModel;//购物车类
- @property(nonatomic,strong) UILabel *lblMarkedPriceAmount;//标价总额
- @property(nonatomic,strong) UILabel *lblEarnestAmount;//利润总额
- @property(nonatomic,strong) UILabel *lblDepartment;//业务部门
- @property(nonatomic,strong) UILabel *lblStaffName;//业务员
- @property(nonatomic,strong) UILabel *lblOrderId;//订单Id
- @property(nonatomic,strong) UILabel *lblTotalAmount;//合计金额
- @property(nonatomic,strong) UILabel *lblCreateDate;//创建日期
- @property(strong,nonatomic) UITableView* vCustomTableView;//订单细节table view
- @property(nonatomic,assign) NSString *orderId;//订单ID
- @property(nonatomic,strong) NSDictionary *dicInfo;//字典信息
- @end
|