Tab state with multiple views associated

I would to make something like this:

.state('tabs.order', {
    url: "/order/:orderId",
    views: {
        'orders-tab': {
            templateUrl: "templates/orderDetail.html",
            controller: 'OrderDetailController'
        },
        'orders-all-tab': {
            templateUrl: "templates/orderDetail.html",
            controller: 'OrderDetailController'
        }
    }
})

then in my view i would to put a conditional ui-sref in which i can choose the tab to be addressed; something like this:

ui-sref="tabs.order({orderId:order.ID}, <orders-tab or orders-all-tab?>)" 

would this be possible?
Thanks