OrderSaleViewController.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // OrderSaleViewController.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:订单销售单控制器
  9. //
  10. #import "BaseViewController.h"
  11. #define reportTextFont [UIFont systemFontOfSize:14]
  12. @interface OrderSaleViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
  13. /**
  14. 客户名称
  15. */
  16. @property (nonatomic,strong) NSString *mCustomerName;
  17. @property (nonatomic,strong) NSString *mCustomerAddress;
  18. /**
  19. 开始日期
  20. */
  21. @property (nonatomic,strong) NSString *mStartDate;
  22. /**
  23. 结束日期
  24. */
  25. @property (nonatomic,strong) NSString *mEndDate;
  26. /**
  27. 电话
  28. */
  29. @property (nonatomic,strong) NSString *mTelephone;
  30. @property (nonatomic,strong) NSString *mOrganizationCode;
  31. /**
  32. 单据类型
  33. */
  34. @property (nonatomic,strong) NSString *mInvoiceType;
  35. /**
  36. 业务员
  37. */
  38. @property (nonatomic,strong) NSString *staffId;
  39. /**
  40. 冲正状态
  41. */
  42. @property (nonatomic,strong) NSString *correctStatus;
  43. /**
  44. 货款总额
  45. */
  46. @property (nonatomic,strong) UILabel *lblGoodsAmount;
  47. /**
  48. 舍零金额
  49. */
  50. @property (nonatomic,strong) UILabel *lblDiscountAmount;
  51. /**
  52. 合计金额
  53. */
  54. @property (nonatomic,strong) UILabel *lblTotalAmount;
  55. @property (nonatomic,strong) UILabel *lblOutAmount;
  56. /**
  57. 详细数据源
  58. */
  59. @property (nonatomic,strong) NSMutableArray *arrModels;
  60. /**
  61. */
  62. @property (nonatomic,strong) NSMutableArray *arrStock;
  63. /**
  64. 头合计view
  65. */
  66. @property (nonatomic,strong) UIView *headView;
  67. /**
  68. UITableView
  69. */
  70. @property (nonatomic,strong) UITableView *vCustomTableView;
  71. /**
  72. 抽屉控制器
  73. */
  74. @property (nonatomic,strong) SideSlipFilterController *filterController;
  75. /**
  76. ASIDownManager请求对象
  77. */
  78. @property (nonatomic,strong) ASIDownManager *downManager;
  79. @property (nonatomic,strong) UIView *totalView;
  80. @end