|
|
@@ -515,6 +515,8 @@
|
|
|
|
|
|
#ifdef BUILD_UWAVER
|
|
|
self.btnCreatePort.title = @"Create Hang Tag";
|
|
|
+ self.btnEdit.title = nil;
|
|
|
+ self.btnEdit.enabled = NO;
|
|
|
#endif
|
|
|
|
|
|
[self initCheckedCount];
|
|
|
@@ -976,6 +978,9 @@
|
|
|
unsigned long color = strtoul([value UTF8String],0,16);
|
|
|
|
|
|
NSString *sectionTitle = @"Portfolio";
|
|
|
+#ifdef BUILD_UWAVER
|
|
|
+ sectionTitle = @"Hang Tag";
|
|
|
+#endif
|
|
|
|
|
|
DefaultTableHeaderView* myView = [[DefaultTableHeaderView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 33)];
|
|
|
|
|
|
@@ -1423,7 +1428,10 @@
|
|
|
if(appDelegate.can_set_tearsheet_price)
|
|
|
{
|
|
|
//[arr addObject:editRowAction];
|
|
|
+
|
|
|
+#ifndef BUILD_UWAVER
|
|
|
[arr addObject:EditQTYAction];
|
|
|
+#endif
|
|
|
}
|
|
|
|
|
|
return arr;
|
|
|
@@ -1435,7 +1443,11 @@
|
|
|
} else {
|
|
|
|
|
|
if(appDelegate.can_set_tearsheet_price) {
|
|
|
+#ifndef BUILD_UWAVER
|
|
|
return @[deleteRowAction,EditQTYAction];
|
|
|
+#else
|
|
|
+ return @[deleteRowAction];
|
|
|
+#endif
|
|
|
} else {
|
|
|
return @[deleteRowAction];
|
|
|
}
|