????

Your IP : 3.21.33.186


Current Path : C:/inetpub/vhost/lantha.gdtsolutions.vn/apitest/template/html/BaoCaoTonKho/
Upload File :
Current File : C:/inetpub/vhost/lantha.gdtsolutions.vn/apitest/template/html/BaoCaoTonKho/detail.cshtml

@*@model ApiGDTVietnam.Models.SanPhamDichVuKhoModel
*@
<table class="DetailTable" id="detail" border="1" cellspacing="0" cellpadding="2">
    <tbody>
        <tr>
            <th width="10" align="center" colspan="1"><b>Mã SP/DV</b></th>
            <th width="25" align="center" colspan="2"><b>Tên sản phẩm/dịch vụ</b></th>
            @foreach (var dichVus in Model.sanPhamDichVuKhos)
            {
                foreach (var diemKD in dichVus.Khos)
                {
                    <th width="20" colspan="2" style="text-align:center"><b>@diemKD.TenKho</b></th>
                }
                break;
            }
            <th  width="20" colspan="2" style="text-align:center"><b>Tổng cộng</b></th>
        </tr>
        @{
            foreach (var item in Model.sanPhamDichVuKhos)
            {
                <tr>
                    <td width="20" colspan="1">
                        @item.MaSanPham
                    </td>
                    <td width="25" colspan="2" style="text-align:left">
                        @item.TenDichVuSanPham
                    </td>
                    @foreach (var diemKDs in item.Khos)
                    {
                        <td width="20" style="text-align:right" colspan="2">
                            @diemKDs.SoLuongTon
                        </td>

                    }
                    <td width="20" colspan="2" style="text-align:right">@item.TongSoluongTon</td>
                </tr>
            }
        }
    </tbody>
</table>