{% extends "AppBundle::layout.html.twig" %} {% block javascripts %} {{parent()}} {% javascripts "@AppBundle/Resources/public/components/datatables/media/js/jquery.dataTables.min.js" "@AppBundle/Resources/public/components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js" %} {% endjavascripts %} {% endblock %} {% block content_title %}产品库存{% endblock %} {% block sub_body %}
{% for flashMessage in app.session.flashbag.get('notice') %}
{{ flashMessage }}
{% endfor %}
产品库存列表
{% for row in orders %} {% endfor %}
id 订单时间 订单ID 客户名称 电话 邮箱 地址 总额
{{row.id}} {{row.PurchaseDate}} {{row.AmazonOrderId}} {{row.BuyerName}} {{row.Phone}} {{row.BuyerEmail}} {{row.CountryCode ~ ' - ' ~ row.StateOrRegion ~ ' - ' ~ row.City ~ ' - ' ~ row.AddressLine1 ~ ' - ' ~ row.PostalCode}} {{row.Amount}}
{% endblock sub_body %}