OrderDetailViewController.h 1.8 KB

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