• Order.pm

    772 773  
    31 31 _vault_filter
    32 32 _postman_filter
    33 33 _sync_filter
    34 _yandex_id_filter
    35 _google_id_filter
    34 36 )];
    35 37
    36 38 sub available_filters {
     
    276 278 return &SQL::Common::_generic_int_filter('d.uid', $opts{uid});
    277 279 }
    278 280
    281 sub _yandex_id_filter {
    282 my ($self,%opts)=@_;
    283 return undef unless ( exists $opts{yandex_id} );
    284 return &SQL::Common::_generic_text_filter('d.yandex_id', $opts{yandex_id});
    285 }
    286
    287 sub _google_id_filter {
    288 my ($self,%opts)=@_;
    289 return undef unless ( exists $opts{google_id} );
    290 return &SQL::Common::_generic_text_filter('d.google_id', $opts{google_id});
    291 }
    292
    279 293 sub _company_filter {
    280 294 my ($self,%opts)=@_;
    281 295 return undef unless ( exists $opts{company_id} );