SubmitOrderVC.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // SubmitOrderVCViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/19.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "ShopCartModel.h"
  10. #import "RefreshDataDelegate.h"
  11. @interface SubmitOrderVC : BaseViewController
  12. @property(strong) UITextField *txtCustomerCode;//客户编码
  13. @property(strong) UITextField *txtCustomerName;//客户名称
  14. @property(strong) UIButton *btnDepartment;//部门按钮
  15. @property(copy)NSString *departmentIdStr;//业务部门ID
  16. @property(copy)NSString *departmentCodeStr;//业务部门Code
  17. @property(strong) UIButton *btnSalesMan;//业务员按钮
  18. @property(copy) NSString *salesmanStr;
  19. @property(copy) NSString *strFilingID;//报备ID
  20. @property(strong) UIButton *btnChannel;//渠道按钮
  21. @property(copy) NSString *channelStr;//渠道变量
  22. @property(strong) UIButton *btnCustomerType;//客户性质按钮
  23. @property(copy) NSString *customerTypeStr;//客户性质变量
  24. @property(copy) NSString *customerIDStr;//customerID
  25. @property(nonatomic,retain)ShopCartModel * cartModel;//购物车类
  26. @property(strong) UIView* headerView;//tableview的headerview
  27. @property(strong)UITableView * vCustomTableView;//提交订单的tableview
  28. @property(strong) UIView *footerView;//底部的footerview
  29. @property(strong) UITextField *txtTelephone;//电话
  30. @property(strong) UITextField *txtCustomerAddress;//客户地址
  31. @property(strong) UITextField *txtRemarks;//备注
  32. @property(strong) UILabel *lblTotalAmount;//合计金额
  33. @property(strong) UIButton *btnCustomerCode;//客户编码按钮
  34. @property(nonatomic,strong) ASIDownManager *mDownManager;//下载管理器
  35. @property(nonatomic,strong) NSArray *detailArr;//
  36. @property(weak) SubmitOrderVC *parentVC;//订单产品数组
  37. @property(strong,nonatomic) NSArray *cartItemArr;//购物车数组
  38. @property(nonatomic,weak) id<RefreshDataDelegate> refreshDelegate;
  39. @property(copy) NSString * strOrganizationID;
  40. @property(copy) NSString *strAddress;
  41. @property(copy) NSString *strRemarks;
  42. @property(copy) NSString *strTelephone;
  43. @property(copy) NSString *strCustomerName;
  44. @property(copy) NSString *strCustomerCode;
  45. -(void)goBack;//返回到上一级控制器
  46. -(void)updatePrice;//更新产品售价
  47. @end