Commit 9ebe1115 by lee

u

parent e5deeca9
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
2AF52A831A700B0A0087DB2C /* BUYShop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = BUYShop.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; 2AF52A831A700B0A0087DB2C /* BUYShop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = BUYShop.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
2AF52A841A700B0A0087DB2C /* BUYShop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = BUYShop.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; 2AF52A841A700B0A0087DB2C /* BUYShop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = BUYShop.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
2AF52A931A7010B20087DB2C /* BUYObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = BUYObject.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; 2AF52A931A7010B20087DB2C /* BUYObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = BUYObject.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
2AF52A941A7010B20087DB2C /* BUYObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = BUYObject.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; 2AF52A941A7010B20087DB2C /* BUYObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = BUYObject.m; sourceTree = "<group>"; };
42488B321AB8761A005F21A9 /* BUYGiftCard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BUYGiftCard.h; sourceTree = "<group>"; }; 42488B321AB8761A005F21A9 /* BUYGiftCard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BUYGiftCard.h; sourceTree = "<group>"; };
42488B331AB8761A005F21A9 /* BUYGiftCard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BUYGiftCard.m; sourceTree = "<group>"; }; 42488B331AB8761A005F21A9 /* BUYGiftCard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BUYGiftCard.m; sourceTree = "<group>"; };
841ADDEB1CB6C942000004B0 /* NSArray+BUYAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+BUYAdditions.h"; sourceTree = "<group>"; }; 841ADDEB1CB6C942000004B0 /* NSArray+BUYAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+BUYAdditions.h"; sourceTree = "<group>"; };
......
...@@ -38,6 +38,7 @@ extern const struct BUYOrderAttributes { ...@@ -38,6 +38,7 @@ extern const struct BUYOrderAttributes {
__unsafe_unretained NSString *statusURL; __unsafe_unretained NSString *statusURL;
__unsafe_unretained NSString *subtotalPrice; __unsafe_unretained NSString *subtotalPrice;
__unsafe_unretained NSString *totalPrice; __unsafe_unretained NSString *totalPrice;
__unsafe_unretained NSString *cancelled;
} BUYOrderAttributes; } BUYOrderAttributes;
extern const struct BUYOrderRelationships { extern const struct BUYOrderRelationships {
...@@ -87,6 +88,8 @@ extern const struct BUYOrderUserInfo { ...@@ -87,6 +88,8 @@ extern const struct BUYOrderUserInfo {
*/ */
@property (nonatomic, strong) NSURL* orderStatusURL; @property (nonatomic, strong) NSURL* orderStatusURL;
@property (nonatomic, assign) BOOL cancelled;
@property (nonatomic, strong) NSDate* processedAt; @property (nonatomic, strong) NSDate* processedAt;
@property (nonatomic, strong) NSURL* statusURL; @property (nonatomic, strong) NSURL* statusURL;
......
...@@ -36,6 +36,7 @@ const struct BUYOrderAttributes BUYOrderAttributes = { ...@@ -36,6 +36,7 @@ const struct BUYOrderAttributes BUYOrderAttributes = {
.statusURL = @"statusURL", .statusURL = @"statusURL",
.subtotalPrice = @"subtotalPrice", .subtotalPrice = @"subtotalPrice",
.totalPrice = @"totalPrice", .totalPrice = @"totalPrice",
.cancelled = @"cancelled",
}; };
const struct BUYOrderRelationships BUYOrderRelationships = { const struct BUYOrderRelationships BUYOrderRelationships = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment