コード例 #1
0
 public static function getEntityFilterPrimaryFieldName($fElem)
 {
     $res = 'ID';
     if ($fElem['name'] === 'StoreProduct:SALE_PRODUCT') {
         $res = 'STORE_ID';
     } else {
         $res = parent::getEntityFilterPrimaryFieldName($fElem);
     }
     return $res;
 }