Oluşturma sürelerine göre Magento Filtre koleksiyonu (bugün, dün, hafta, saat vb.)


9

Oluşturulan tarihe ve "dün" oluşturulan het girişlerine göre filtrelemek istediğim özel bir koleksiyonum var

Koleksiyon Girişleri

//dates are set in controller using
setCreatedTime(Mage::getModel('core/date')->gmtDate()); 

Dün oluşturuldu (çalışmıyor)

//3 products items Yesterday
//below filtering outputs incorrect entries
$collection = Mage::getModel('things/things')->getCollection();

Denedim, ancak yanlış girişler çıktı;

//thought strtotime('yesterday') would work..
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('yesterday'))));
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('-1 day'))));
$collection->addFieldToFilter('created_time', array('from'=> strtotime('-1 day', time()),'to'=> time(),'datetime' => true));
$fromDate = date('Y-m-d H:i:s', strtotime($fromDate));
$toDate = date('Y-m-d H:i:s', strtotime($toDate));
$collection->addFieldToFilter('created_time', array('from'=>$fromDate, 'to'=>$toDate));

Bugün Oluşturuldu (şimdiki gün) (çalışıyor)

//5 products items today with timestamp 2016-05-01 05:22:53
//below filtering outputs correct entries
$collection = Mage::getModel('things/things')->getCollection();
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('today'))));

Geçen hafta oluşturuldu (eserler)

//23 products items with timestamps for this week
//below filtering outputs correct entries
$collection = Mage::getModel('things/things')->getCollection();
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('-1 week'))));

Yanıtlar:


10

@Ashvin yanıtına eklemek için ..

Son bir saat içinde oluşturulan girişler var

$things = Mage::getModel('things/things')->getCollection();
$things->addFieldToFilter('things_type', 'view');
$fromDate = date('Y-m-d H:i:s', strtotime('-1 hour'));
$toDate = date('Y-m-d H:i:s', strtotime(now()));
$things->addFieldToFilter('created_time', array(
    'from' => $fromDate,
    'to' => $toDate,
    'date' => true,
    ));
return count($things);

ve dünkü kayıtları nasıl oluşturduğumu;

$now = Mage::getModel('core/date')->timestamp(time());
$dateStart = date('Y-m-d' . ' 00:00:00', $now);
$dateEnd = date('Y-m-d' . ' 23:59:59', $now);
$things = Mage::getModel('things/things')->getCollection();
$things->addFieldToFilter('things_type', 'view');
$things->addFieldToFilter('created_time', array('from' => $dateStart, 'to' => $dateEnd));
return count($things);

5

Bunu nasıl çözeriz? basit. aksi belirtilmedikçe, siparişler tablosunda son 24 saat boyunca sunulan sipariş miktarını sınırlamak.

Örnek: - app / code / core / Mage / Adminhtml / Block / Sales / Order / Grid.php dosyasını şuraya kopyalayın:

Uygulamanın / kod / yerel / Büyücü / Adminhtml / Blok / Satış / Sipariş / Grid.php

Aşağıdaki işlevi düzenleyin, buradan kopyalayıp yapıştırın:

protected function _prepareCollection()    {

$collection = Mage::getResourceModel($this->_getCollectionClass());

######################## FILTER BY LAST DAY ######################
$now = Mage::getModel('core/date')->timestamp(time());
$filter   = $this->getParam($this->getVarNameFilter(), null); //important - check for other requested grid-filters before filtering today's orders

$dateStart = date('Y-m-d' . ' 00:00:00', $now);
$dateEnd = date('Y-m-d' . ' 23:59:59', $now);
$postData = Mage::app()->getRequest()->getPost();
if (empty($filter)) {
$collection->addFieldToFilter('`main_table`.created_at', array('from' => $dateStart, 'to' => $dateEnd));
}
##################################################################



$collection->getSelect()->group('entity_id');
$this->setCollection($collection);

return $this;

}

soru sormak için daha fazla kod kullanın ... (bugün, dün, hafta, saat vb)


go0d works @ashvin
Amit Bera

Hey! Harika bir çözüm! Bunu nasıl değiştirebilirim, böylece sadece iki saat önceki siparişleri alır?
Vladimir Despotovic
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.