|
|
@@ -7307,7 +7307,7 @@
|
|
|
return dic;
|
|
|
}
|
|
|
|
|
|
-+ (NSDictionary *)shippingMethodDic:(NSDictionary *)params db:(sqlite3 *)db {
|
|
|
++ (NSDictionary *)shippingMethodDic:(NSMutableDictionary *)params db:(sqlite3 *)db {
|
|
|
NSMutableDictionary *dic = [NSMutableDictionary dictionary];
|
|
|
|
|
|
NSString *orderCode = [self valueInParams:params key:@"orderCode"];
|
|
|
@@ -7463,7 +7463,8 @@
|
|
|
};
|
|
|
|
|
|
[dic setValue:item_0 forKey:@"item_0"];
|
|
|
- [dic setValue:lift_gate forKey:@"lift_gate"];
|
|
|
+ [params setValue:lift_gate forKey:@"lift_gate"];
|
|
|
+
|
|
|
|
|
|
return dic;
|
|
|
}
|
|
|
@@ -7840,8 +7841,8 @@
|
|
|
|
|
|
// 1 Shipping Method
|
|
|
NSMutableDictionary *shipping_method_dic = [[self shippingMethodDic:params db:db] mutableCopy];
|
|
|
- [params setValue:[shipping_method_dic objectForKey:@"lift_gate"] forKey:@"lift_gate"];
|
|
|
- [shipping_method_dic removeObjectForKey:@"lift_gate"];
|
|
|
+// [params setValue:[shipping_method_dic objectForKey:@"lift_gate"] forKey:@"lift_gate"];
|
|
|
+// [shipping_method_dic removeObjectForKey:@"lift_gate"];
|
|
|
[ret setValue:shipping_method_dic forKey:@"section_1"];
|
|
|
|
|
|
|