Giter Club home page Giter Club logo

commerce-history's Introduction

commerce-history

snippet to list Commerce orders history

commerce-history's People

Contributors

pathologic avatar 0test avatar

Stargazers

Artem avatar

Watchers

 avatar  avatar

Forkers

0test

commerce-history's Issues

Ошибка при выводе заказов при наличии subtotals

Не могу понять откуда растут ноги, то ли у меня не так, то ли в сниппете ошибка.
Добавляю товар, плагином на OnCollectSubtotals докидываю в заказ поля.

        $params['rows']['discount'] = [
            'percents' =>  $percents,
            'summ' => $discount,
            'price' => 0,
            'title' => 'Скидка'
        ];

В БД, соответственно, вижу эту "скидку" как товар
image

Тут либо у меня не должно быть NULL, либо где-то тут надо сделать что-то по-другому, чтобы не лазало в пустые ключи.

Ну типа

    public function getDocs($tvlist = '')
    {
// ...
      if ($ids) {
          $ids = implode(',', $ids);
          $q = $this->dbQuery("SELECT * FROM {$this->getTable('commerce_order_products')} WHERE `order_id` IN ($ids)");
          while ($row = $this->modx->db->getRow($q)) {
              if ($row['product_id']) {
                  $orders[$row['order_id']]['cart']['products'][] = $row;
                  if ($row['options']) {
                      $row['options'] =  json_decode($row['options'], true);
                  }
                  if ($row['meta']) {
                      $row['meta'] = json_decode($row['meta'], true);
                  }
                  $products[] = $row['product_id'];
              } else {

                  $orders[$row['order_id']]['cart']['subtotals'][] = $row;
              }
              
          }
      }
    //...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.