Payment flow). If the field is NULL it means unknown and it will be assumed to be 1 during payment.create if entity_table is civicrm_membership * * @var int|string|null * (SQL type: int unsigned) * Note that values will be retrieved from the database as a string. */ public $membership_num_terms; /** * Class constructor. */ public function __construct() { $this->__table = 'civicrm_line_item'; parent::__construct(); } /** * Returns localized title of this entity. * * @param bool $plural * Whether to return the plural version of the title. */ public static function getEntityTitle($plural = FALSE) { return $plural ? ts('Line Items') : ts('Line Item'); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contribution_id', 'civicrm_contribution', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'price_field_id', 'civicrm_price_field', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'price_field_value_id', 'civicrm_price_field_value', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'financial_type_id', 'civicrm_financial_type', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Dynamic(self::getTableName(), 'entity_id', NULL, 'id', 'entity_table'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ public static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = [ 'id' => [ 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Line Item ID'), 'description' => ts('Line Item'), 'required' => TRUE, 'where' => 'civicrm_line_item.id', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Number', ], 'readonly' => TRUE, 'add' => '1.7', ], 'entity_table' => [ 'name' => 'entity_table', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Line Item Entity Type'), 'description' => ts('May contain civicrm_contribution, civicrm_participant or civicrm_membership'), 'required' => TRUE, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, 'where' => 'civicrm_line_item.entity_table', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'pseudoconstant' => [ 'callback' => 'CRM_Price_BAO_LineItem::entityTables', ], 'add' => '1.7', ], 'entity_id' => [ 'name' => 'entity_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Line Item Entity'), 'description' => ts('entry in table'), 'required' => TRUE, 'where' => 'civicrm_line_item.entity_id', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'add' => '1.7', ], 'contribution_id' => [ 'name' => 'contribution_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Contribution ID'), 'description' => ts('FK to civicrm_contribution'), 'where' => 'civicrm_line_item.contribution_id', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'FKClassName' => 'CRM_Contribute_DAO_Contribution', 'html' => [ 'label' => ts("Contribution"), ], 'add' => '4.5', ], 'price_field_id' => [ 'name' => 'price_field_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Price Field ID'), 'description' => ts('FK to civicrm_price_field'), 'where' => 'civicrm_line_item.price_field_id', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'FKClassName' => 'CRM_Price_DAO_PriceField', 'html' => [ 'label' => ts("Price Field"), ], 'pseudoconstant' => [ 'table' => 'civicrm_price_field', 'keyColumn' => 'id', 'labelColumn' => 'label', 'nameColumn' => 'name', ], 'add' => '1.7', ], 'label' => [ 'name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Line Item Label'), 'description' => ts('descriptive label for item - from price_field_value.label'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'where' => 'civicrm_line_item.label', 'default' => NULL, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '1.7', ], 'qty' => [ 'name' => 'qty', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Line Item Quantity'), 'description' => ts('How many items ordered'), 'required' => TRUE, 'precision' => [ 20, 2, ], 'where' => 'civicrm_line_item.qty', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '1.7', ], 'unit_price' => [ 'name' => 'unit_price', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Unit Price'), 'description' => ts('price of each item'), 'required' => TRUE, 'precision' => [ 20, 2, ], 'where' => 'civicrm_line_item.unit_price', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', 'label' => ts("Unit Price"), ], 'add' => '1.7', ], 'line_total' => [ 'name' => 'line_total', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Line Item Total'), 'description' => ts('qty * unit_price'), 'required' => TRUE, 'precision' => [ 20, 2, ], 'where' => 'civicrm_line_item.line_total', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'add' => '1.7', ], 'participant_count' => [ 'name' => 'participant_count', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Line Item Participant Count'), 'description' => ts('Participant count for field'), 'where' => 'civicrm_line_item.participant_count', 'default' => NULL, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '3.2', ], 'price_field_value_id' => [ 'name' => 'price_field_value_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Option ID'), 'description' => ts('FK to civicrm_price_field_value'), 'where' => 'civicrm_line_item.price_field_value_id', 'default' => NULL, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'FKClassName' => 'CRM_Price_DAO_PriceFieldValue', 'html' => [ 'label' => ts("Option"), ], 'pseudoconstant' => [ 'table' => 'civicrm_price_field_value', 'keyColumn' => 'id', 'labelColumn' => 'label', 'nameColumn' => 'name', ], 'add' => '3.3', ], 'financial_type_id' => [ 'name' => 'financial_type_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Financial Type ID'), 'description' => ts('FK to Financial Type.'), 'where' => 'civicrm_line_item.financial_type_id', 'default' => NULL, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'FKClassName' => 'CRM_Financial_DAO_FinancialType', 'html' => [ 'type' => 'Select', 'label' => ts("Financial Type"), ], 'pseudoconstant' => [ 'table' => 'civicrm_financial_type', 'keyColumn' => 'id', 'labelColumn' => 'name', ], 'add' => '4.3', ], 'non_deductible_amount' => [ 'name' => 'non_deductible_amount', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Non-deductible Amount'), 'description' => ts('Portion of total amount which is NOT tax deductible.'), 'required' => TRUE, 'precision' => [ 20, 2, ], 'where' => 'civicrm_line_item.non_deductible_amount', 'headerPattern' => '/non?.?deduct/i', 'dataPattern' => '/^\d+(\.\d{2})?$/', 'default' => '0.0', 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '4.7', ], 'tax_amount' => [ 'name' => 'tax_amount', 'type' => CRM_Utils_Type::T_MONEY, 'title' => ts('Tax Amount'), 'description' => ts('tax of each item'), 'precision' => [ 20, 2, ], 'import' => TRUE, 'where' => 'civicrm_line_item.tax_amount', 'headerPattern' => '/tax(.?am(ou)?nt)?/i', 'dataPattern' => '/^\d+(\.\d{2})?$/', 'export' => TRUE, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'html' => [ 'type' => 'Text', ], 'add' => '4.6', ], 'membership_num_terms' => [ 'name' => 'membership_num_terms', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Number of membership terms purchased'), 'description' => ts('Number of terms for this membership (only supported in Order->Payment flow). If the field is NULL it means unknown and it will be assumed to be 1 during payment.create if entity_table is civicrm_membership'), 'where' => 'civicrm_line_item.membership_num_terms', 'default' => NULL, 'table_name' => 'civicrm_line_item', 'entity' => 'LineItem', 'bao' => 'CRM_Price_BAO_LineItem', 'localizable' => 0, 'add' => '5.40', ], ]; CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ public static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } /** * Returns the names of this table * * @return string */ public static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return bool */ public function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ public static function &import($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'line_item', $prefix, []); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ public static function &export($prefix = FALSE) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'line_item', $prefix, []); return $r; } /** * Returns the list of indices * * @param bool $localize * * @return array */ public static function indices($localize = TRUE) { $indices = [ 'UI_line_item_value' => [ 'name' => 'UI_line_item_value', 'field' => [ 0 => 'entity_id', 1 => 'entity_table', 2 => 'contribution_id', 3 => 'price_field_value_id', 4 => 'price_field_id', ], 'localizable' => FALSE, 'unique' => TRUE, 'sig' => 'civicrm_line_item::1::entity_id::entity_table::contribution_id::price_field_value_id::price_field_id', ], ]; return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }