All files / examples/order/bo order.js

100% Statements 7/7
100% Branches 0/0
100% Functions 4/4
100% Lines 7/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 482x 2x       6x       6x       127x       362x                                                         2x  
const Orders = require('./orders');
const UtmSource = require('./utm-source');
 
class Order {
  constructor(props) {
    Object.assign(this, props);
  }
 
  get BoCollection() {
    return Orders;
  }
 
  static get tableName() {
    return 'order';
  }
 
  static get sqlColumnsData() {
    return [
      'id',
      'email',
      'browser_ip',
      'browser_user_agent',
      'kujo_imported_date',
      'created_date',
      'cancel_reason',
      'cancelled_date',
      'closed_date',
      'processed_date',
      'updated_date',
      'note',
      'subtotal_price',
      'taxes_included',
      'total_discounts',
      'total_price',
      'total_tax',
      'total_weight',
      'order_status_url',
      { column: 'utm_source_id', references: UtmSource },
      'utm_medium_id',
      'utm_campaign',
      'utm_content',
      'utm_term'
    ];
  }
}
 
module.exports = Order;