DD-211 : Verify that the items have the right permissions when dropping in a stock folder, add an adequate message when failing to drop in a stock folder.
parent
5bde459c79
commit
896f48229e
|
|
@ -1089,6 +1089,10 @@ bool can_move_item_to_marketplace(const LLInventoryCategory* root_folder, LLInve
|
|||
// Check stock folder type matches item type in marketplace listings or merchant outbox (even if of no use there for the moment)
|
||||
LLViewerInventoryCategory* view_folder = dynamic_cast<LLViewerInventoryCategory*>(dest_folder);
|
||||
bool accept = (view_folder && view_folder->acceptItem(inv_item));
|
||||
if (!accept)
|
||||
{
|
||||
tooltip_msg = LLTrans::getString("TooltipOutboxMixedStock");
|
||||
}
|
||||
|
||||
// Check that the item has the right type and permissions to be sold on the marketplace
|
||||
if (accept)
|
||||
|
|
|
|||
|
|
@ -818,8 +818,10 @@ bool LLViewerInventoryCategory::acceptItem(LLInventoryItem* inv_item)
|
|||
LLInventoryModel::cat_array_t* cat_array;
|
||||
LLInventoryModel::item_array_t* item_array;
|
||||
gInventory.getDirectDescendentsOf(getUUID(),cat_array,item_array);
|
||||
// Destination stock folder must be empty OR types of incoming and existing items must be identical
|
||||
accept = (!item_array->size() || (item_array->at(0)->getInventoryType() == inv_item->getInventoryType()));
|
||||
// Destination stock folder must be empty OR types of incoming and existing items must be identical and have the same permissions
|
||||
accept = (!item_array->size() ||
|
||||
((item_array->at(0)->getInventoryType() == inv_item->getInventoryType()) &&
|
||||
(item_array->at(0)->getPermissions().getMaskNextOwner() == inv_item->getPermissions().getMaskNextOwner())));
|
||||
}
|
||||
}
|
||||
return accept;
|
||||
|
|
|
|||
|
|
@ -247,6 +247,7 @@ Please try logging in again in a minute.</string>
|
|||
<string name="TooltipOutboxDragActive">You can't move a listed listing</string>
|
||||
<string name="TooltipOutboxCannotDropOnRoot">You can't drop items on filtered tabs root</string>
|
||||
<string name="TooltipOutboxCannotMoveRoot">You can't move the marketplace listings root folder</string>
|
||||
<string name="TooltipOutboxMixedStock">All items in a stock folder must have the same type and permission</string>
|
||||
|
||||
<string name="TooltipDragOntoOwnChild">You can't move a folder into its child</string>
|
||||
<string name="TooltipDragOntoSelf">You can't move a folder into itself</string>
|
||||
|
|
|
|||
Loading…
Reference in New Issue