HTML 鎖定表頭 固定行 固定列 方法

因爲方法很簡單,就未封裝成插件的形式,僅僅以代碼方式發佈。這裏把自己做的方式寫出來,以資紀念。

支持IE6+,FF3.6+,Opera9+,Chrome9+

一、實現方式

這裏的準備使用4個table實現,具體如下圖:

image

上圖紅色部分爲要取出來的部分,藍色部分爲拼接後可以看到的部分。最終結果如下圖

image

二、整體的框架

1、最下面的是原始的Table。

2、用左邊的table覆蓋在上層,命名爲tableColumn。

3、用上部的table覆蓋在更上層,命名爲tableHead。

4、在左上角覆蓋固定不動的table,命名爲tableFix。

自然在各自的外層都要用div框起來,以便後面的浮動和覆蓋等等,所以結構的html如下:

<div id="MyTable_tableLayout"> <div id="MyTable_tableFix"><table id="MyTable_tableFixClone" border="1" cellspacing="0" cellpadding="0"></table> </div><div id="MyTable_tableHead"> <table id="MyTable_tableHeadClone" border="1" cellspacing="0" cellpadding="0"></table> </div> <div id="MyTable_tableColumn"><table id="MyTable_tableColumnClone" border="1" cellspacing="0" cellpadding="0"></table> </div><div id="MyTable_tableData"> <table id="MyTable" border="1" cellspacing="0" cellpadding="0"></table> </div> </div>


三、代碼實現

整體框架結構出來後,下面要做的就是確定每個區域的高度,寬度,定位就算完成了。

首先確定下調用接口,調用時已經有table了,我們希望很簡單的一行js即可高定,就用了一個方法實現。由於使用項目中table線寬全部都是1,所以未考慮其他線寬問題。

function FixTable(TableID, FixColumnNumber, width, height)

第一個參數:table的ID,第二個參數:要鎖定的列數目,第三個參數:顯示的寬度,第四個參數:顯示的高度。

(一)首先創建上面所訴的框架出來:

if ($("#" + TableID + "_tableLayout").length != 0) { $("#" + TableID + "_tableLayout").before($("#" + TableID)); $("#" + TableID + "_tableLayout").empty(); } else { $("#" + TableID).after("<div id='" + TableID + "_tableLayout' style='overflow:hidden;height:" + height + "px; width:" + width + "px;'></div>"); } $('<div id="' + TableID +'_tableFix"></div>' + '<div id="' + TableID + '_tableHead"></div>' + '<div id="' + TableID + '_tableColumn"></div>' + '<div id="' + TableID + '_tableData"></div>').appendTo("#" + TableID + "_tableLayout"); var oldtable = $("#" + TableID); var tableFixClone = oldtable.clone(true); tableFixClone.attr("id", TableID + "_tableFixClone"); $("#" + TableID + "_tableFix").append(tableFixClone); var tableHeadClone = oldtable.clone(true); tableHeadClone.attr("id", TableID + "_tableHeadClone"); $("#" + TableID + "_tableHead").append(tableHeadClone);var tableColumnClone = oldtable.clone(true); tableColumnClone.attr("id", TableID + "_tableColumnClone"); $("#" + TableID + "_tableColumn").append(tableColumnClone); $("#" + TableID + "_tableData").append(oldtable); $("#" + TableID + "_tableLayout table").each(function () { $(this).css("margin", "0"); });

(二)計算tableFix,tableHead的高度:

var HeadHeight = $("#" + TableID + "_tableHead thead").height(); HeadHeight += 2; $("#" + TableID +"_tableHead").css("height", HeadHeight); $("#" + TableID + "_tableFix").css("height", HeadHeight);

(三)計算tableFix,tableColumn的寬度:

var ColumnsWidth = 0; var ColumnsNumber = 0; $("#" + TableID + "_tableColumn tr:last td:lt(" + FixColumnNumber +")").each(function () { ColumnsWidth += $(this).outerWidth(true); ColumnsNumber++; }); ColumnsWidth += 2; if($.browser.msie) { switch ($.browser.version) { case "7.0": if (ColumnsNumber >= 3) ColumnsWidth--; break;case "8.0": if (ColumnsNumber >= 2) ColumnsWidth--; break; } } $("#" + TableID + "_tableColumn").css("width", ColumnsWidth); $("#" + TableID + "_tableFix").css("width", ColumnsWidth);

(四)爲tableHead和tableColumn添加聯動的滾動條事件:

$("#" + TableID + "_tableData").scroll(function () { $("#" + TableID + "_tableHead").scrollLeft($("#" + TableID +"_tableData").scrollLeft()); $("#" + TableID + "_tableColumn").scrollTop($("#" + TableID +"_tableData").scrollTop()); });

(五)爲較小的table修正樣式:

if ($("#" + TableID + "_tableHead").width() > $("#" + TableID + "_tableHead table").width()) { $("#" + TableID +"_tableHead").css("width", $("#" + TableID + "_tableHead table").width()); $("#" + TableID +"_tableData").css("width", $("#" + TableID + "_tableHead table").width() + 17); } if ($("#" + TableID +"_tableColumn").height() > $("#" + TableID + "_tableColumn table").height()) { $("#" + TableID +"_tableColumn").css("height", $("#" + TableID + "_tableColumn table").height()); $("#" + TableID +"_tableData").css("height", $("#" + TableID + "_tableColumn table").height() + 17); }

(六)爲整體添加樣式,定位:

$("#" + TableID + "_tableFix").css({ "overflow": "hidden", "position": "relative", "z-index": "50", "background-color": "Silver" }); $("#" + TableID + "_tableHead").css({ "overflow": "hidden", "width": width - 17, "position":"relative", "z-index": "45", "background-color": "Silver" }); $("#" + TableID + "_tableColumn").css({ "overflow":"hidden", "height": height - 17, "position": "relative", "z-index": "40", "background-color": "Silver" }); $("#" + TableID + "_tableData").css({ "overflow": "scroll", "width": width, "height": height, "position": "relative", "z-index": "35" }); $("#" + TableID + "_tableFix").offset($("#" + TableID + "_tableLayout").offset()); $("#" + TableID + "_tableHead").offset($("#" + TableID + "_tableLayout").offset()); $("#" + TableID +"_tableColumn").offset($("#" + TableID + "_tableLayout").offset()); $("#" + TableID + "_tableData").offset($("#" + TableID + "_tableLayout").offset());

以下是HTML中固定表頭演示,其中新增表格適應瀏覽器顯示大小的方法。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title> new document </title>
    <META NAME="Generator" CONTENT="EditPlus,Microshaoft">
    <META NAME="Author" CONTENT="EditPlus,Microshaoft">
    <META NAME="Keywords" CONTENT="EditPlus,Microshaoft">
    <META NAME="Description" CONTENT="EditPlus,Microshaoft">
<!-- 屏蔽瀏覽器滾動條 -->
<style type="text/css">
body {
	overflow-x:hidden;
	overflow-y:hidden;
}
html {
	overflow-x:hidden;
	overflow-y:hidden;
}
</style> 
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script type="text/javascript">
//獲取瀏覽器高度和寬度,用於適應瀏覽器顯示teble的大小
	var winWidth = 0;//瀏覽器窗體內部寬度初始化
	var winHeight = 0;//瀏覽器窗體內部高度初始化
	function findDimensions() //函數:獲取尺寸
	{
		//獲取窗口寬度
		if (window.innerWidth)
			winWidth = window.innerWidth;
		else if ((document.body) && (document.body.clientWidth))
			winWidth = document.body.clientWidth;
		
		//獲取窗口高度
		if (window.innerHeight)
			winHeight = window.innerHeight;
		else if ((document.body) && (document.body.clientHeight))
			winHeight = document.body.clientHeight;
		
		//通過深入Document內部對body進行檢測,獲取窗口大小
		if (document.documentElement && document.documentElement.clientHeight && document.documentElement.clientWidth)
		{
			winHeight = document.documentElement.clientHeight;
			winWidth = document.documentElement.clientWidth;
		}
		//alert(winHeight);
	}
	findDimensions();//調用函數,獲取數值
	window.οnresize=findDimensions;//觸發窗體大小改變事件

//鎖定表頭行列
    function FixTable(TableID, FixColumnNumber, width, height) {
    /// <summary>
    ///     鎖定表頭和列
    ///     <para> sorex.cnblogs.com </para>
    /// </summary>
    /// <param name="TableID" type="String">
    ///     要鎖定的Table的ID
    /// </param>
    /// <param name="FixColumnNumber" type="Number">
    ///     要鎖定列的個數
    /// </param>
    /// <param name="width" type="Number">
    ///     顯示的寬度
    /// </param>
    /// <param name="height" type="Number">
    ///     顯示的高度
    /// </param>
    //首先創建上面所訴的框架出來
    if ($("#" + TableID + "_tableLayout").length != 0) {
        $("#" + TableID + "_tableLayout").before($("#" + TableID));
        $("#" + TableID + "_tableLayout").empty();
    }
    else {
        $("#" + TableID).after("<div id='" + TableID + "_tableLayout' style='overflow:hidden;height:" + height + "px; width:" + width + "px;'></div>");
    }
    $('<div id="' + TableID + '_tableFix"></div>'
    + '<div id="' + TableID + '_tableHead"></div>'
    + '<div id="' + TableID + '_tableColumn"></div>'
    + '<div id="' + TableID + '_tableData"></div>').appendTo("#" + TableID + "_tableLayout");
    var oldtable = $("#" + TableID);
    var tableFixClone = oldtable.clone(true);
    tableFixClone.attr("id", TableID + "_tableFixClone");
    $("#" + TableID + "_tableFix").append(tableFixClone);
    var tableHeadClone = oldtable.clone(true);
    tableHeadClone.attr("id", TableID + "_tableHeadClone");
    $("#" + TableID + "_tableHead").append(tableHeadClone);
    var tableColumnClone = oldtable.clone(true);
    tableColumnClone.attr("id", TableID + "_tableColumnClone");
    $("#" + TableID + "_tableColumn").append(tableColumnClone);
    $("#" + TableID + "_tableData").append(oldtable);
    $("#" + TableID + "_tableLayout table").each(function () {
        $(this).css("margin", "0");
    });
    //計算tableFix,tableHead的高度
    var HeadHeight = $("#" + TableID + "_tableHead thead").height();
		//alert(HeadHeight);
    HeadHeight += 2;
    $("#" + TableID + "_tableHead").css("height", HeadHeight);
    $("#" + TableID + "_tableFix").css("height", HeadHeight);
    //計算tableFix,tableColumn的寬度:
    var ColumnsWidth = 0;
    var ColumnsNumber = 0;
    $("#" + TableID + "_tableColumn tr:last td:lt(" + FixColumnNumber + ")").each(function () {
        ColumnsWidth += $(this).outerWidth(true);
        ColumnsNumber++;
    });
    ColumnsWidth += 2;
    if ($.browser.msie) {
        switch ($.browser.version) {
            case "7.0":
                if (ColumnsNumber >= 3) ColumnsWidth--;
                break;
            case "8.0":
                if (ColumnsNumber >= 2) ColumnsWidth--;
                break;
        }
    }
    $("#" + TableID + "_tableColumn").css("width", ColumnsWidth);
    $("#" + TableID + "_tableFix").css("width", ColumnsWidth);
    //爲tableHead和tableColumn添加聯動的滾動條事件
    $("#" + TableID + "_tableData").scroll(function () {
        $("#" + TableID + "_tableHead").scrollLeft($("#" + TableID + "_tableData").scrollLeft());
        $("#" + TableID + "_tableColumn").scrollTop($("#" + TableID + "_tableData").scrollTop());
    });
    $("#" + TableID + "_tableFix").css({ "overflow": "hidden", "position": "relative", "z-index": "50", "background-color": "Silver" });
    $("#" + TableID + "_tableHead").css({ "overflow": "hidden", "width": width - 17, "position": "relative", "z-index": "45", "background-color": "Silver" });
    $("#" + TableID + "_tableColumn").css({ "overflow": "hidden", "height": height - 17, "position": "relative", "z-index": "40", "background-color": "Silver" });
    $("#" + TableID + "_tableData").css({ "overflow": "scroll", "width": width, "height": height, "position": "relative", "z-index": "35" });
    //爲較小的table修正樣式
    if ($("#" + TableID + "_tableHead").width() > $("#" + TableID + "_tableFix table").width()) {
        $("#" + TableID + "_tableHead").css("width", $("#" + TableID + "_tableFix table").width());
        $("#" + TableID + "_tableData").css("width", $("#" + TableID + "_tableFix table").width() + 17);
    }
    if ($("#" + TableID + "_tableColumn").height() > $("#" + TableID + "_tableColumn table").height()) {
        $("#" + TableID + "_tableColumn").css("height", $("#" + TableID + "_tableColumn table").height());
        $("#" + TableID + "_tableData").css("height", $("#" + TableID + "_tableColumn table").height() + 17);
    }
    //爲整體添加樣式,定位
    $("#" + TableID + "_tableFix").offset($("#" + TableID + "_tableLayout").offset());
    $("#" + TableID + "_tableHead").offset($("#" + TableID + "_tableLayout").offset());
    $("#" + TableID + "_tableColumn").offset($("#" + TableID + "_tableLayout").offset());
    $("#" + TableID + "_tableData").offset($("#" + TableID + "_tableLayout").offset());
}
$(document).ready(function () {
            FixTable("MyTable", 3, winWidth-15, winHeight-25);//參數1爲tableID,參數2爲鎖定列的個數,參數3爲table的寬度,參數4爲table的高度
        });
//-->
</script>

</head>
<body>
<table     
	style="border-bottom-color: black; border-top-color: black; width: 1000px; color: #000000; border-right-color: black; font-size: medium; border-left-color: black; word-break:keep-all"
    id="MyTable"
    border="1"
    cellspacing="0"
    cellpadding="0" >
	<thead>
    <tr align="center" >
							<th  colSpan="34" align="center">2013年固定資產賬本</th>
					</tr>
    <tr align="center">
							<th  rowSpan="3">   日期   </th>
							<th  rowSpan="3"> 序號 </th>
							<th  rowSpan="3">         品名         </th>
							<th  colSpan="3" rowSpan="2">專用設備</th>
							<th  colSpan="18">一般設備</th>
							<th  colSpan="9">其他設備</th>
							<th  rowSpan="3">合計</th>
					</tr>
    <tr align="center">
							<th  colSpan="3">電氣設備</th>
							<th  colSpan="3">傢俱用具及其他類</th>
							<th  colSpan="3">電子產品及通訊設備</th>
							<th  colSpan="3">通用設備</th>
							<th  colSpan="3">交通運輸設備</th>
							<th  colSpan="3">小計</th>
							<th  colSpan="3">儀器儀表及量具</th>
							<th  colSpan="3">其他</th>
							<th  colSpan="3">小計</th>
					</tr>
    <tr align="center" >
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
							<th >     購入    </th>
							<th >     報殘    </th>
							<th >     餘額    </th>
					</tr>
			</thead>
																							    					
			 <tbody>				
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="left" style="font-weight: bold;nowrap" >結轉上年</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >184518946.50</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3594192.34</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >2322833.69</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >6871775.70</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3502292.32</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >559500.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >16850594.05</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >144576.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >350715.73</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >495291.73</td>
															<td  align="right" style="font-weight: bold;nowrap" >201864832.28</td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4678</td>
															<td  align="left" style="nowrap" >電開水器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >7600.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >7600.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
														
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4679</td>
															<td  align="left" style="nowrap" >雙搖牀1臺,擔架車1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >4370.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4680</td>
															<td  align="left" style="nowrap" >暗盒及IP板1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >10000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4681</td>
															<td  align="left" style="nowrap" >高頻電刀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >98000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4682</td>
															<td  align="left" style="nowrap" >模式電動吸引器1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >2000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4683</td>
															<td  align="left" style="nowrap" >多頻振動排痰機2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >58000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-05</td>
															<td  align="center" style="nowrap" >4684</td>
															<td  align="left" style="nowrap" >冠脈刀柄1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >13878.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-07</td>
															<td  align="center" style="nowrap" >4685</td>
															<td  align="left" style="nowrap" >潛水泵1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >1680.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >1680.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-07</td>
															<td  align="center" style="nowrap" >4686</td>
															<td  align="left" style="nowrap" >筆記本電腦1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >5400.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" >5400.00</td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-07</td>
															<td  align="center" style="nowrap" >4687</td>
															<td  align="left" style="nowrap" >器械消毒盒2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" >9800.00</td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" >9800.00</td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-01-07</td>
															<td  align="center" style="nowrap" >4688</td>
															<td  align="left" style="nowrap" >輸液泵4臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >24000.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="nowrap" >2013-01-10</td>
															<td  align="center" style="nowrap" >4689</td>
															<td  align="left" style="nowrap" >監護儀1臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >49800.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="left" style="font-weight: bold;nowrap" >本月累計</td>
															<td  align="right" style="font-weight: bold;nowrap" >255678.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >9280.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >4370.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >5400.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >19050.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="left" style="font-weight: bold;nowrap" >累計數</td>
															<td  align="right" style="font-weight: bold;nowrap" >255678.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >184774624.50</td>
															<td  align="right" style="font-weight: bold;nowrap" >9280.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3603472.34</td>
															<td  align="right" style="font-weight: bold;nowrap" >4370.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >2327203.69</td>
															<td  align="right" style="font-weight: bold;nowrap" >5400.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >6877175.70</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3502292.32</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >559500.00</td>
															<td  align="right" style="font-weight: bold;nowrap" >19050.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >16869644.05</td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >154376.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >350715.73</td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >505091.73</td>
															<td  align="right" style="font-weight: bold;nowrap" >202149360.28</td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="nowrap" >2013-02-01</td>
															<td  align="center" style="nowrap" >4690</td>
															<td  align="left" style="nowrap" >微量注射泵2臺</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" >7900.00</td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#eaef7e;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#c1e0ff;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#f2b1fc;nowrap" ></td>
															<td  align="right" style="background-color:#a3f8b1;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="odd" >
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="left" style="font-weight: bold;nowrap" >本月累計</td>
															<td  align="right" style="font-weight: bold;nowrap" >7900.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
														</tr>
																									    					
															
														<tr  name="content"  id=""  class="even" >
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="center" style="font-weight: bold;nowrap" ></td>
															<td  align="left" style="font-weight: bold;nowrap" >累計數</td>
															<td  align="right" style="font-weight: bold;nowrap" >263578.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >184782524.50</td>
															<td  align="right" style="font-weight: bold;nowrap" >9280.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3603472.34</td>
															<td  align="right" style="font-weight: bold;nowrap" >4370.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >2327203.69</td>
															<td  align="right" style="font-weight: bold;nowrap" >5400.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >6877175.70</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >3502292.32</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >559500.00</td>
															<td  align="right" style="font-weight: bold;nowrap" >19050.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >16869644.05</td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >154376.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >350715.73</td>
															<td  align="right" style="font-weight: bold;nowrap" >9800.00</td>
															<td  align="right" style="font-weight: bold;nowrap" ></td>
															<td  align="right" style="font-weight: bold;nowrap" >505091.73</td>
															<td  align="right" style="font-weight: bold;nowrap" >202157260.28</td>
														</tr>
								</tbody>
																		    	    </table>
    </body>
</html>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章