'index',
];
} /**
* Returns all supported detail status as an array. The status are used on the detail
* page in the position grid to edit or create an order position.
*/
public function getDetailStatusAction() { $repository =
$this->
get('models'
)->
getRepository(Order::
class);
$data =
$repository->
getDetailStatusQuery()->
getArrayResult();
$this->
View()->
assign(['success' => true, 'data' =>
$data]);
} /**
* Returns a list of taxes. Supports store paging, sorting and filtering over the standard ExtJs store parameters.
* Each shop has the following fields:
* <code>
* [int] id
* [double] tax
* [string] description
* </code>
*/