Go to the documentation of this file.00001 <?php
00002
00003 require_once 'oxerptype.php';
00004
00008 class oxERPType_ScalePrice extends oxERPType
00009 {
00015 public function __construct()
00016 {
00017 parent::__construct();
00018
00019 $this->_sTableName = 'oxprice2article';
00020 $this->_blRestrictedByShopId = true;
00021
00022 $this->_aFieldList = array(
00023 'OXSHOPID' => 'OXSHOPID',
00024 'OXARTID' => 'OXARTID',
00025 'OXADDABS' => 'OXADDABS',
00026 'OXADDPERC' => 'OXADDPERC',
00027 'OXAMOUNT' => 'OXAMOUNT',
00028 'OXAMOUNTTO' => 'OXAMOUNTTO',
00029 'OXID' => 'OXID'
00030 );
00031
00032 $this->_aKeyFieldList = array(
00033 'OXID' => 'OXID'
00034 );
00035 }
00036
00037 }