The default view is found at admin/build/views/edit/tripletex_invoice_list. This base view can be extended to a block and filtered, but the date fields are currently listed as integers (unix time-stamps). Need to add a field handler to make sure this is listed the way it should + options on formatting.

Comments

stenjo’s picture

Assigned: Unassigned » stenjo
Status: Active » Fixed

Wrong declaration in tripletex.views.inc fixed.
Should be:

      'invoice_date' => array(
        'title' => t('Date'),
        'help' => t('Timestamp of the invoice.'),
        'field' => array(
          'handler' => 'views_handler_field_date',
          'click sortable' => TRUE,
        ),
        'sort' => array(
          'handler' => 'views_handler_sort_date',
        ),
        'filter' => array(
          'handler' => 'views_handler_filter_date',
        ),

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.