| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- //
- // OrderSaleViewController.h
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:订单销售单控制器
- //
- #import "BaseViewController.h"
- #define reportTextFont [UIFont systemFontOfSize:14]
- @interface OrderSaleViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
- /**
- 客户名称
- */
- @property (nonatomic,strong) NSString *mCustomerName;
- @property (nonatomic,strong) NSString *mCustomerAddress;
- /**
- 开始日期
- */
- @property (nonatomic,strong) NSString *mStartDate;
- /**
- 结束日期
- */
- @property (nonatomic,strong) NSString *mEndDate;
- /**
- 电话
- */
- @property (nonatomic,strong) NSString *mTelephone;
- @property (nonatomic,strong) NSString *mOrganizationCode;
- /**
- 单据类型
- */
- @property (nonatomic,strong) NSString *mInvoiceType;
- /**
- 业务员
- */
- @property (nonatomic,strong) NSString *staffId;
- /**
- 冲正状态
- */
- @property (nonatomic,strong) NSString *correctStatus;
- /**
- 货款总额
- */
- @property (nonatomic,strong) UILabel *lblGoodsAmount;
- /**
- 舍零金额
- */
- @property (nonatomic,strong) UILabel *lblDiscountAmount;
- /**
- 合计金额
- */
- @property (nonatomic,strong) UILabel *lblTotalAmount;
- @property (nonatomic,strong) UILabel *lblOutAmount;
- /**
- 详细数据源
- */
- @property (nonatomic,strong) NSMutableArray *arrModels;
- /**
-
- */
- @property (nonatomic,strong) NSMutableArray *arrStock;
- /**
- 头合计view
- */
- @property (nonatomic,strong) UIView *headView;
- /**
- UITableView
- */
- @property (nonatomic,strong) UITableView *vCustomTableView;
- /**
- 抽屉控制器
- */
- @property (nonatomic,strong) SideSlipFilterController *filterController;
- /**
- ASIDownManager请求对象
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (nonatomic,strong) UIView *totalView;
- @end
|