123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- //
- // OrderItem.h
- // FirstLink
- //
- // Created by ascii on 15/6/12.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import "Motis.h"
- #import "ShipAddress.h"
- #import "ServeUserItem.h"
- #import "FKIdCardItem.h"
- typedef NS_ENUM(NSInteger, FKOrderStatus) {
- FKOrderStatusUnknow = -1, // 无效
- FKOrderStatusRefund = 0, // 已退款
- FKOrderStatusUnpay, // 待付款
- FKOrderStatusWaitDeliver, // 已付款/待发货
- FKOrderStatusWaitReceipt, // 待收货
- FKOrderStatusFinish, // 跟单成功/已完成
- FKOrderStatusDenied, // 已拒绝/待退款
- FKOrderStatusUngroup = 11, // 待成团
- FKOrderStatusCancel, // 已取消
- FKOrderStatusIgnore, // 已取消
- FKOrderStatusInvalid, // 已失效
- };
- typedef NS_ENUM(NSInteger, FKRefundStatus) {
- FKRefundStatusNone = 0, // 无退款
- FKRefundStatusProgress, // 退款中
- FKRefundStatusPart, // 部分退款
- FKRefundStatusDone, // 已退款
- };
- @class LogisticsItem;
- @class FKRefundPriceItem;
- @interface OrderDetailItem : NSObject
- @property (nonatomic, strong) NSString *orderID;
- @property (nonatomic, strong) NSString *isIDPass;
- @property (nonatomic, strong) NSString *note;
- /**
- * 支付类型(1:支付宝支付,2:微信支付)
- */
- @property (nonatomic, strong) NSString *paymentType;
- @property (nonatomic, strong) NSString *paymentNO;
- @property (nonatomic, strong) NSString *paymentTime;
- @property (nonatomic, strong) NSString *paymentInvalidTime;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *webURL;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *serverTime;
- /**
- * 国际运费,转运运费
- */
- @property (nonatomic, strong) NSString *internationalPostage;
- /**
- * 官网运费
- */
- @property (nonatomic, strong) NSString *officialPostage;
- /**
- * 税费,关税
- */
- @property (nonatomic, strong) NSString *taxFee;
- /**
- * 服务费
- */
- @property (nonatomic, strong) NSString *serviceFee;
- /**
- * 优惠
- */
- @property (nonatomic, strong) NSString *derateFee;
- /**
- * 总金额
- */
- @property (nonatomic, strong) NSString *totalFee;
- /**
- * 商品总价
- */
- @property (nonatomic, strong) NSString *totalPrice;
- /**
- * 国内邮费
- */
- @property (nonatomic, strong) NSString *postage;
- //@property (nonatomic, strong) LogisticsItem *logisticsItem;
- @property (nonatomic, strong) FKIdCardItem *idCardItem;
- @property (nonatomic, strong) FKRefundPriceItem *refundPriceItem;
- @property (nonatomic, strong) ShipAddress *address;
- @property (nonatomic, strong) ServeUserItem *serveUserItem;
- @property (nonatomic, strong) NSArray *supplierArray;
- #pragma mark -
- - (NSString *)realProductAllPrice;
- - (NSString *)orderCreateTime;
- - (NSString *)orderPaymentTime;
- @end
|