|
|
@@ -1823,6 +1823,14 @@
|
|
|
__weak typeof(self) weakSelf = self;
|
|
|
cell.onReturnQTY=^(int qty,NSDictionary* ext)
|
|
|
{
|
|
|
+ int result = [[ext objectForKey:@"result"] intValue];
|
|
|
+ BOOL refresh = [[ext objectForKey:@"refresh"] boolValue];
|
|
|
+
|
|
|
+ if (result == 2 && refresh) {
|
|
|
+ [self ReloadData];
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
NSMutableDictionary * item_json = nil;
|
|
|
if (weakSelf.back_order_flag) {
|
|
|
item_json = [[weakSelf itemJsonAtIndexPath:indexPath] mutableCopy];
|