Browse Source

更新電梯標準價查詢

main
Cheng 1 year ago
parent
commit
4fb67d254d
  1. 6
      wms/cont/sign_list.php
  2. 208
      wms/contract/api/postContractData.php
  3. 365
      wms/mkt/price_normal-index.php
  4. 8
      wms/mkt/pricereview-create.php
  5. 294
      wms/mkt/pricereview_renovate-create.php

6
wms/cont/sign_list.php

@ -76,9 +76,9 @@ status,
f_return_content('payment_kind',payment_kind ) payment_kind FROM $table f_return_content('payment_kind',payment_kind ) payment_kind FROM $table
where 1=1 $where ORDER BY vol_no"; where 1=1 $where ORDER BY vol_no";
$data = mysqli_query($link, $sql); $data = mysqli_query($link, $sql);
echo '<pre>'; // echo '<pre>';
print_r($sql); // print_r($sql);
echo '</pre>'; // echo '</pre>';
?> ?>

208
wms/contract/api/postContractData.php

@ -354,6 +354,8 @@ function T8insert($data, $facilityno)
$contract_end_date = !empty($data['contract_end_date']) ? $data['contract_end_date'] : null; $contract_end_date = !empty($data['contract_end_date']) ? $data['contract_end_date'] : null;
$num = !empty($data['num']) ? $data['num'] : null; // 電梯數量 $num = !empty($data['num']) ? $data['num'] : null; // 電梯數量
$elevators = !empty($data['elevators']) ? json_decode($data['elevators'], true) : []; //電梯 $elevators = !empty($data['elevators']) ? json_decode($data['elevators'], true) : []; //電梯
$area = !empty($_POST['area']) ? $_POST['area'] : null; //縣市 Ex. A->台北 , B-> ..。
$user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null; $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null;
@ -368,11 +370,12 @@ function T8insert($data, $facilityno)
$createTime = str_replace("-", '', $date); $createTime = str_replace("-", '', $date);
$beginDate = str_replace("-", '', $contract_begin_date); $beginDate = str_replace("-", '', $contract_begin_date);
$endDate = str_replace("-", '', $contract_end_date); $endDate = str_replace("-", '', $contract_end_date);
// if (empty($result)) { if (empty($result)) {
// 若 客戶資料為空,新增一筆到 comCustomer // 若 客戶資料為空,新增一筆到 comCustomer
// 新增客戶資料 // 新增客戶資料
$sql = "INSERT INTO comBusinessPartner(BizPartnerId,BizPartnerName,BusinessAttr,WorkTelNo,BizToDate,TaxNo,EnterpriseName,ContactAddress,EMail,CreatorId,CreateTime,BizPartnerTypeId) $sql = "INSERT INTO comBusinessPartner
VALUES(:BizPartnerId,:BizPartnerName,1,:WorkTelNo,99999999,:TaxNo,:EnterpriseName,:ContactAddress,:EMail,:CreatorId,:CreateTime,'10')"; (BizPartnerId,BizPartnerName,BusinessAttr,CountryId,WorkTelNo,BizToDate,TaxNo,EnterpriseName,ContactAddress,EMail,CreatorId,CreateTime,BizPartnerTypeId)
VALUES(:BizPartnerId,:BizPartnerName,1,'TW',:WorkTelNo,99999999,:TaxNo,:EnterpriseName,:ContactAddress,:EMail,:CreatorId,:CreateTime,'10')";
$stmt = $connT8->prepare($sql); $stmt = $connT8->prepare($sql);
$stmt->bindParam(':BizPartnerId', $contractno); $stmt->bindParam(':BizPartnerId', $contractno);
$stmt->bindParam(':BizPartnerName', $partyA); $stmt->bindParam(':BizPartnerName', $partyA);
@ -386,8 +389,8 @@ function T8insert($data, $facilityno)
$stmt->execute(); $stmt->execute();
$sql = "INSERT INTO comCustomer(OrgId,BizPartnerTypeId,BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime) $sql = "INSERT INTO comCustomer(OrgId,BizPartnerTypeId,CurrId,BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime)
VALUES('1000','10',:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime)"; VALUES('1000','10','TWD',:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime)";
$stmt = $connT8->prepare($sql); $stmt = $connT8->prepare($sql);
$stmt->bindParam(':BizPartnerId', $contractno); $stmt->bindParam(':BizPartnerId', $contractno);
@ -397,112 +400,113 @@ function T8insert($data, $facilityno)
$stmt->bindParam(':CreateTime', $createTime); $stmt->bindParam(':CreateTime', $createTime);
$stmt->execute(); $stmt->execute();
} else {
// $sql = "INSERT INTO comBusinessPartner(BizPartnerId,BizPartnerName,WorkTelNo,TaxNo,EnterpriseName,ContactAddress,EMail,CreatorId,CreateTime)VALUES(:BizPartnerId,:BizPartnerName,:WorkTelNo,:TaxNo,:EnterpriseName,:ContactAddress,:EMail,:CreatorId,:CreateTime)";
// $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':BizPartnerId', $contractno);
// $stmt->bindParam(':BizPartnerName', $partyA);
// $stmt->bindParam(':WorkTelNo', $phone);
// $stmt->bindParam(':TaxNo', $vat);
// $stmt->bindParam(':EnterpriseName', $customer); //企業名稱
// $stmt->bindParam(':ContactAddress', $partyAaddress);
// $stmt->bindParam(':EMail', $email);
// $stmt->bindParam(':CreatorId', $user_id);
// $stmt->bindParam(':CreateTime', $createTime);
// $stmt->execute();
// } else {
// // 若客戶資料不為空,更新該客戶資訊。 // // 若客戶資料不為空,更新該客戶資訊。
// $sql = "UPDATE comCustomer SET $sql = "UPDATE comCustomer SET
// PersonId=:PersonId, PersonId=:PersonId,
// InvoiceAddress=:InvoiceAddress, InvoiceAddress=:InvoiceAddress,
// LastOperatorId=:LastOperatorId, LastOperatorId=:LastOperatorId,
// LastOperateTime=:LastOperateTime, LastOperateTime=:LastOperateTime
// WHERE BizPartnerId=:BizPartnerId WHERE BizPartnerId=:BizPartnerId
// "; ";
// $stmt = $connT8->prepare($sql); $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':PersonId', $salesman); $stmt->bindParam(':PersonId', $salesman);
// $stmt->bindParam(':InvoiceAddress', $address); $stmt->bindParam(':InvoiceAddress', $address);
// $stmt->bindParam(':LastOperatorId', $user_id); $stmt->bindParam(':LastOperatorId', $user_id);
// $stmt->bindParam(':LastOperateTime', $createTime); $stmt->bindParam(':LastOperateTime', $createTime);
// $stmt->bindParam(':BizPartnerId', $contractno); $stmt->bindParam(':BizPartnerId', $contractno);
// $stmt->execute(); $stmt->execute();
// $sql = "UPDATE comBusinessPartner SET $sql = "UPDATE comBusinessPartner SET
// BizPartnerName=:BizPartnerName, BizPartnerName=:BizPartnerName,
// WorkTelNo=:WorkTelNo, WorkTelNo=:WorkTelNo,
// TaxNo=:TaxNo, TaxNo=:TaxNo,
// EnterpriseName=:EnterpriseName, EnterpriseName=:EnterpriseName,
// ContractAddress=:ContractAddress, ContactAddress=:ContactAddress,
// EMail=:EMail, EMail=:EMail,
// LastOperatorId=:LastOperatorId, LastOperatorId=:LastOperatorId,
// LastOperateTime=:LastOperateTime LastOperateTime=:LastOperateTime
// WHERE BizPartnerId = :BizPartnerId WHERE BizPartnerId = :BizPartnerId
// "; ";
// $stmt = $connT8->prepare($sql); $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':BizPartnerName', $partyA); $stmt->bindParam(':BizPartnerName', $partyA);
// $stmt->bindParam(':WorkTelNo', $phone); $stmt->bindParam(':WorkTelNo', $phone);
// $stmt->bindParam(':TaxNo', $vat); $stmt->bindParam(':TaxNo', $vat);
// $stmt->bindParam(':EnterpriseName', $customer); $stmt->bindParam(':EnterpriseName', $customer);
// $stmt->bindParam(':ContractAddress', $partyAaddress); $stmt->bindParam(':ContactAddress', $partyAaddress);
// $stmt->bindParam(':EMail', $email); $stmt->bindParam(':EMail', $email);
// $stmt->bindParam(':LastOperatorId', $user_id); $stmt->bindParam(':LastOperatorId', $user_id);
// $stmt->bindParam(':LastOperateTime', $createTime); $stmt->bindParam(':LastOperateTime', $createTime);
// $stmt->bindParam(':BizPartnerId', $contractno); $stmt->bindParam(':BizPartnerId', $contractno);
// $stmt->execute(); $stmt->execute();
// } }
// echo '<pre>';
// print_r($elevators['maintainance']);
// echo '</pre>';
foreach ($elevators as $index => $elevator) {
$type[] = $elevator['maintainance'];
if ($type[$index] == 'A') {
$type = 'C3';
} else if ($type[$index] == 'B') {
$type = 'C4';
} else if ($type[$index] == 'C') {
$type = 'C5';
}
}
// echo '<pre>';
// print_r($type);
// echo '</pre>';
// //新增於 comProject。合約 table // //新增於 comProject。合約 table
// $sql = "INSERT INTO comProject(ProjectId,ProjectName,TypeId,ValidityFromDate,ValidityToDate,CreateTime,CreatorId,IsInUsed) VALUES(:ProjectId,:ProjectName,:TypeId,:ValidityFromDate,ValidityToDate,:CreateTime,:CreatorId,1)"; $sql = "INSERT INTO comProject(ProjectId,ProjectName,TypeId,ValidityFromDate,ValidityToDate,CreateTime,CreatorId,IsInUsed)
// $stmt = $connT8->prepare($sql); VALUES(:ProjectId,:ProjectName,:TypeId,:ValidityFromDate,:ValidityToDate,:CreateTime,:CreatorId,1)";
// $stmt->bindParam(':ProjectId', $contractno); $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':ProjectName', $customer); $stmt->bindParam(':ProjectId', $contractno);
// $stmt->bindParam(':TypeId', $elevators['maintainance']); $stmt->bindParam(':ProjectName', $customer);
// $stmt->bindParam(':ValidityFromDate', $beginDate); $stmt->bindParam(':TypeId', $type);
// $stmt->bindParam(':ValidityToDate', $endDate); $stmt->bindParam(':ValidityFromDate', $beginDate);
// $stmt->bindParam(':CreateTime', $createTime); $stmt->bindParam(':ValidityToDate', $endDate);
// $stmt->bindParam(':CreatorId', $user_id); $stmt->bindParam(':CreateTime', $createTime);
// $stmt->execute(); $stmt->bindParam(':CreatorId', $user_id);
$stmt->execute();
// // 新增電梯數 // // 新增電梯數
// foreach ($elevators as $index => $elevator) { foreach ($elevators as $index => $elevator) {
// echo '<pre>'; echo '<pre>';
// print_r($elevator); print_r($elevator);
// echo '</pre>'; echo '</pre>';
// if ($elevator['maintainance'] == 'A') {
// $elevator['maintainance'] = 'C3'; $sql = "INSERT INTO comMaterial
// } else if ($elevator['maintainance'] == 'B') { (MaterialId,MaterialCategoryId,CreatorId,CreateTime)
// $elevator['maintainance'] = 'C4'; VALUES (:MaterialId,'E',:CreatorId,:CreateTime)";
// } else if ($elevator['maintainance'] == 'C') { $stmt = $connT8->prepare($sql);
// $elevator['maintainance'] = 'C5'; $stmt->bindParam(':MaterialId', $facilityno[$index]);
// } $stmt->bindParam(':CreatorId', $user_id);
// $sql = "INSERT INTO comMaterial(MaterialId,MaterialCategoryId,CreatorId,CreateTime) VALUES (:MaterialId,'E',:CreatorId,:CreateTime)"; $stmt->bindParam(':CreateTime', $createTime);
// $stmt = $connT8->prepare($sql); $stmt->execute();
// $stmt->bindParam(':MaterialId', $facilityno[$index]); /// 還沒修完
// $stmt->bindParam(':CreatorId', $user_id);
// $stmt->bindParam(':CreateTime', $createTime);
// $stmt->execute();
// /// 還沒修完
// $sql = "INSERT INTO comMaterialGroup(MaterialId,MaterialName,MaterialCategoryId,UnitId,CreatorId,CreateTime) VALUES (:MaterialId,:MaterialName,'E','SET',:CreatorId,:CreateTime)";
// $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':MaterialId', $facilityno[$index]);
// $stmt->bindParam(':MaterialName', $customer);
// $stmt->bindParam(':CreatorId', $user_id);
// $stmt->bindParam(':CreateTime', $createTime);
// $stmt->execute();
// /// 還沒修完
// $sql = "INSERT INTO comMaterialPurchases(MaterialId,CurrId,SUnitId,TaxId,CreatorId,CreateTime) VALUES (:MaterialId,'TWD','SET','ST005',:CreatorId,:CreateTime)"; $sql = "INSERT INTO comMaterialGroup
// $stmt = $connT8->prepare($sql); (MaterialTypeId,MaterialId,MaterialName,MaterialCategoryId,UnitId,CreatorId,CreateTime)
// $stmt->bindParam(':MaterialId', $facilityno[$index]); VALUES ('10',:MaterialId,:MaterialName,'E','SET',:CreatorId,:CreateTime)";
// $stmt->bindParam(':CreatorId', $user_id); $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':CreateTime', $createTime); $stmt->bindParam(':MaterialId', $facilityno[$index]);
// $stmt->execute(); $stmt->bindParam(':MaterialName', $customer);
$stmt->bindParam(':CreatorId', $user_id);
$stmt->bindParam(':CreateTime', $createTime);
$stmt->execute();
/// 還沒修完
$sql = "INSERT INTO comMaterialPurchases
(MaterialId,CurrId,SUnitId,TaxId,CreatorId,CreateTime)
VALUES (:MaterialId,'TWD','SET','ST005',:CreatorId,:CreateTime)";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':MaterialId', $facilityno[$index]);
$stmt->bindParam(':CreatorId', $user_id);
$stmt->bindParam(':CreateTime', $createTime);
$stmt->execute();
}
$connT8->commit(); $connT8->commit();
// }
} }

365
wms/mkt/price_normal-index.php

@ -7,22 +7,27 @@ include "../header.php";
.container { .container {
padding-top: 10px !important; padding-top: 10px !important;
} }
#exTab1 .tab-content { #exTab1 .tab-content {
color: white; color: white;
padding: 5px 15px; padding: 5px 15px;
} }
/* remove border radius for the tab */ /* remove border radius for the tab */
#exTab1 .nav-pills>li>a { #exTab1 .nav-pills>li>a {
border-radius: 10%; border-radius: 10%;
font-size: 16px; font-size: 16px;
} }
#exTab1 .tab-content table { #exTab1 .tab-content table {
border: 1px solid #000; border: 1px solid #000;
} }
</style> </style>
<div style="overflow-x:auto;"> <div style="overflow-x:auto;">
<div class="container"><h2>電梯標準價查詢</h2></div> <div class="container">
<h2>電梯標準價查詢</h2>
</div>
<div id="exTab1" class="container"> <div id="exTab1" class="container">
<ul class="nav nav-pills"> <ul class="nav nav-pills">
<li class="active"><a href="#1a" data-toggle="tab">小機房</a></li> <li class="active"><a href="#1a" data-toggle="tab">小機房</a></li>
@ -51,36 +56,34 @@ include "../header.php";
<td class=xl123 width=213 style='width:160pt'>單位:萬元</td> <td class=xl123 width=213 style='width:160pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt'><span <td height=51 class=xl89 style='height:38.0pt'><span style='mso-spacerun:yes'> </span>
style='mso-spacerun:yes'> </span><font class="font21"><span <font class="font21"><span style='mso-spacerun:yes'>                </span></font>
style='mso-spacerun:yes'>                </span></font></td> </td>
<td class=xl89 style='border-top:none;border-left:none'>標準價</td> <td class=xl89 style='border-top:none;border-left:none'>標準價</td>
<td class=xl89 style='border-top:none;border-left:none'>(±1S)<span <td class=xl89 style='border-top:none;border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
<td colspan=2 rowspan=12 class=xl124 width=461 style='border-right:1.0pt solid black; <td colspan=2 rowspan=12 class=xl124 width=461 style='border-right:1.0pt solid black;
border-bottom:1.0pt solid black;width:346pt;vertical-align:middle;text-align:left;font-size:16px;'>1、1.0最低到5停;5停以下以5停計。<br> border-bottom:1.0pt solid black;width:346pt;vertical-align:middle;text-align:left;font-size:16px;'>1、1.5及1.75最低到5停,5停以下以5停計。<br>
2、1.5及1.75最低到8停;8停以下以8停計。<br> 2、處長權限為發佈價之80%。<br>
3、1.5變為1.75---》+5.4萬/台;加減1停同1.5。<br> </td>
4、經理權限為發佈價之80%、業務部協理權限為75%。</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-6*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-6*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>89.0</td> <td class=xl81 style='border-top:none;border-left:none'>90.1</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-8*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-8*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>89.1</td> <td class=xl81 style='border-top:none;border-left:none'>90.1</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-9*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-9*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>89.7</td> <td class=xl81 style='border-top:none;border-left:none'>90.4</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-10*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-10*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>90.4</td> <td class=xl81 style='border-top:none;border-left:none'>91.9</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
@ -90,64 +93,63 @@ include "../header.php";
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>95.6</td> <td class=xl81 style='border-top:none;border-left:none'>95.2</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>98.0</td> <td class=xl81 style='border-top:none;border-left:none'>97.8</td>
<td class=xl81 style='border-top:none;border-left:none'>4.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.1</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>98.5</td> <td class=xl81 style='border-top:none;border-left:none'>98.3</td>
<td class=xl81 style='border-top:none;border-left:none'>4.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.1</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>133.6</td> <td class=xl81 style='border-top:none;border-left:none'>130.6</td>
<td class=xl81 style='border-top:none;border-left:none'>5.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>153.2</td> <td class=xl81 style='border-top:none;border-left:none'>150.2</td>
<td class=xl81 style='border-top:none;border-left:none'>5.4</td> <td class=xl81 style='border-top:none;border-left:none'>4.9</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*7-CO60</td> <td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*7-CO60</td>
<td class=xl81 style='border-top:none;border-left:none'>158.4</td> <td class=xl81 style='border-top:none;border-left:none'>155.4</td>
<td class=xl81 style='border-top:none;border-left:none'>5.4</td> <td class=xl81 style='border-top:none;border-left:none'>4.9</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td colspan=5 height=51 class=xl123 style='height:38.0pt'> </td> <td colspan=5 height=51 class=xl123 style='height:38.0pt'> </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt'><span <td height=51 class=xl89 style='height:38.0pt'><span style='mso-spacerun:yes'> </span>
style='mso-spacerun:yes'> </span><font class="font21"><span <font class="font21"><span style='mso-spacerun:yes'>                </span></font>
style='mso-spacerun:yes'>                </span></font></td> </td>
<td class=xl89 style='border-left:none'>標準價</td> <td class=xl89 style='border-left:none'>標準價</td>
<td class=xl89 style='border-left:none'>(±1S)<span <td class=xl89 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
<td class=xl91 style='border-left:none'>規格</td> <td class=xl91 style='border-left:none'>規格</td>
<td class=xl92 style='border-left:none'>標準價</td> <td class=xl92 style='border-left:none'>標準價</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-8*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-8*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>101.5</td> <td class=xl81 style='border-top:none;border-left:none'>102.1</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
<td class=xl114 style='border-top:none'>MAE100-8*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-8*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>106.3</td> <td class=xl81 style='border-top:none;border-left:none'>106.3</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-9*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-9*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>102.1</td> <td class=xl81 style='border-top:none;border-left:none'>102.6</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
<td class=xl114 style='border-top:none'>MAE100-9*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-9*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>107.4</td> <td class=xl81 style='border-top:none;border-left:none'>107.4</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-10*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-10*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>103.0</td> <td class=xl81 style='border-top:none;border-left:none'>108.0</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
<td class=xl114 style='border-top:none'>MAE100-10*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-10*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>108.6</td> <td class=xl81 style='border-top:none;border-left:none'>108.6</td>
@ -164,42 +166,42 @@ include "../header.php";
<td class=xl81 style='border-top:none;border-left:none'>110.0</td> <td class=xl81 style='border-top:none;border-left:none'>110.0</td>
<td class=xl81 style='border-top:none;border-left:none'>4.0</td> <td class=xl81 style='border-top:none;border-left:none'>4.0</td>
<td class=xl114 style='border-top:none'>MAE100-12*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-12*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>115.5</td> <td class=xl81 style='border-top:none;border-left:none'>115.3</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>112.2</td> <td class=xl81 style='border-top:none;border-left:none'>112.2</td>
<td class=xl81 style='border-top:none;border-left:none'>4.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.1</td>
<td class=xl114 style='border-top:none'>MAE100-13*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-13*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>117.8</td> <td class=xl81 style='border-top:none;border-left:none'>117.5</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>113.4</td> <td class=xl81 style='border-top:none;border-left:none'>113.4</td>
<td class=xl81 style='border-top:none;border-left:none'>4.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.1</td>
<td class=xl114 style='border-top:none'>MAE100-15*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-15*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>119.0</td> <td class=xl81 style='border-top:none;border-left:none'>118.8</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>151.1</td> <td class=xl81 style='border-top:none;border-left:none'>148.1</td>
<td class=xl81 style='border-top:none;border-left:none'>5.1</td> <td class=xl81 style='border-top:none;border-left:none'>4.5</td>
<td class=xl114 style='border-top:none'>MAE100-17*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-17*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>156.7</td> <td class=xl81 style='border-top:none;border-left:none'>152.7</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>173.0</td> <td class=xl81 style='border-top:none;border-left:none'>170.0</td>
<td class=xl81 style='border-top:none;border-left:none'>5.4</td> <td class=xl81 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAE100-20*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-20*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>178.6</td> <td class=xl81 style='border-top:none;border-left:none'>173.6</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*10-CO90</td> <td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*10-CO90</td>
<td class=xl81 style='border-top:none;border-left:none'>192.0</td> <td class=xl81 style='border-top:none;border-left:none'>188.0</td>
<td class=xl81 style='border-top:none;border-left:none'>5.4</td> <td class=xl81 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAE100-24*10-CO105</td> <td class=xl114 style='border-top:none'>MAE100-24*10-CO105</td>
<td class=xl82 style='border-top:none;border-left:none'>198.0</td> <td class=xl82 style='border-top:none;border-left:none'>193.0</td>
</tr> </tr>
<![if supportMisalignedColumns]> <![if supportMisalignedColumns]>
<tr height=0 style='display:none'> <tr height=0 style='display:none'>
@ -227,137 +229,133 @@ include "../header.php";
<td class=xl123 width=213 style='width:160pt'>單位:萬元</td> <td class=xl123 width=213 style='width:160pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl93 style='height:38.0pt'><span <td height=51 class=xl93 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td class=xl93 style='border-top:none;border-left:none'>標準價</td> <td class=xl93 style='border-top:none;border-left:none'>標準價</td>
<td class=xl93 style='border-top:none;border-left:none'>(±1S)<span <td class=xl93 style='border-top:none;border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
<td colspan=2 rowspan=11 class=xl124 width=470 style='border-right:1.0pt solid black; <td colspan=2 rowspan=11 class=xl124 width=470 style='border-right:1.0pt solid black;
width:353pt;vertical-align:middle;text-align:left;font-size:16px;'>1、1.0最低到5停;5停以下以5停計。<br> width:353pt;vertical-align:middle;text-align:left;font-size:16px;'>1、1.5及1.75停最低到5停;5停以下以5停計。<br>
2、1.5及1.75最低到8停;8停以下以8停計。<br> 2、處長權限為發布價之80%。<br>
3、1.5變為1.75---》+5.4萬/台;加減1停同1.5。<br> </td>
4、營業員權限為發佈價之73%</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-8*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-8*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>117.5</td> <td class=xl83 style='border-top:none;border-left:none'>111.9</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-9*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-9*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>118.7</td> <td class=xl83 style='border-top:none;border-left:none'>112.7</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-10*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-10*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>120.1</td> <td class=xl83 style='border-top:none;border-left:none'>114.3</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-11*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-11*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>121.2</td> <td class=xl83 style='border-top:none;border-left:none'>115.4</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-12*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-12*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>122.5</td> <td class=xl83 style='border-top:none;border-left:none'>116.6</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-13*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-13*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>123.8</td> <td class=xl83 style='border-top:none;border-left:none'>117.8</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-15*7-CO60</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAM200-15*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>124.9</td> <td class=xl83 style='border-top:none;border-left:none'>118.9</td>
<td class=xl83 style='border-top:none;border-left:none'>4.5</td> <td class=xl83 style='border-top:none;border-left:none'>4.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-17*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-17*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>187.4</td> <td class=xl83 style='border-top:none;border-left:none'>178.3</td>
<td class=xl83 style='border-top:none;border-left:none'>6.4</td> <td class=xl83 style='border-top:none;border-left:none'>5.7</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-20*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-20*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>204.8</td> <td class=xl83 style='border-top:none;border-left:none'>194.8</td>
<td class=xl83 style='border-top:none;border-left:none'>6.4</td> <td class=xl83 style='border-top:none;border-left:none'>5.7</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-24*7-CO60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-24*7-CO60</td>
<td class=xl83 style='border-top:none;border-left:none'>208.5</td> <td class=xl83 style='border-top:none;border-left:none'>198.3</td>
<td class=xl83 style='border-top:none;border-left:none'>6.4</td> <td class=xl83 style='border-top:none;border-left:none'>5.7</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-8*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-8*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>133.4</td> <td class=xl83 style='border-top:none;border-left:none'>127.7</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-8*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-8*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>139.1</td> <td class=xl84 style='border-top:none;border-left:none'>131.6</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-9*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-9*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>134.5</td> <td class=xl83 style='border-top:none;border-left:none'>128.7</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-9*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-9*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>140.2</td> <td class=xl84 style='border-top:none;border-left:none'>132.7</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-10*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-10*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>135.8</td> <td class=xl83 style='border-top:none;border-left:none'>130.0</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-10*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-10*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>141.5</td> <td class=xl84 style='border-top:none;border-left:none'>133.9</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-11*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-11*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>137.1</td> <td class=xl83 style='border-top:none;border-left:none'>131.2</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-11*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-11*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>142.8</td> <td class=xl84 style='border-top:none;border-left:none'>135.1</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-12*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-12*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>138.2</td> <td class=xl83 style='border-top:none;border-left:none'>132.3</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-12*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-12*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>143.9</td> <td class=xl84 style='border-top:none;border-left:none'>136.2</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-13*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-13*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>140.0</td> <td class=xl83 style='border-top:none;border-left:none'>134.0</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-13*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-13*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>145.7</td> <td class=xl84 style='border-top:none;border-left:none'>137.9</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-15*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-15*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>141.2</td> <td class=xl83 style='border-top:none;border-left:none'>135.1</td>
<td class=xl83 style='border-top:none;border-left:none'>4.9</td> <td class=xl83 style='border-top:none;border-left:none'>4.9</td>
<td class=xl114 style='border-top:none'>MAM200-15*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-15*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>146.9</td> <td class=xl84 style='border-top:none;border-left:none'>139.0</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-17*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-17*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>202.8</td> <td class=xl83 style='border-top:none;border-left:none'>196.6</td>
<td class=xl83 style='border-top:none;border-left:none'>6.5</td> <td class=xl83 style='border-top:none;border-left:none'>5.9</td>
<td class=xl114 style='border-top:none'>MAM200-17*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-17*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>208.5</td> <td class=xl84 style='border-top:none;border-left:none'>199.5</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-20*10-CO90</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAM200-20*10-CO90</td>
<td class=xl83 style='border-top:none;border-left:none'>220.2</td> <td class=xl83 style='border-top:none;border-left:none'>213.2</td>
<td class=xl83 style='border-top:none;border-left:none'>6.5</td> <td class=xl83 style='border-top:none;border-left:none'>5.9</td>
<td class=xl114 style='border-top:none'>MAM200-20*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-20*10-CO105</td>
<td class=xl84 style='border-top:none;border-left:none'>225.9</td> <td class=xl84 style='border-top:none;border-left:none'>223.9</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAM200-24*10-CO90</td> <td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAM200-24*10-CO90</td>
<td class=xl85 style='border-top:none;border-left:none'>223.9</td> <td class=xl85 style='border-top:none;border-left:none'>216.7</td>
<td class=xl85 style='border-top:none;border-left:none'>6.5</td> <td class=xl85 style='border-top:none;border-left:none'>5.9</td>
<td class=xl114 style='border-top:none'>MAM200-24*10-CO105</td> <td class=xl114 style='border-top:none'>MAM200-24*10-CO105</td>
<td class=xl86 style='border-top:none;border-left:none'>229.6</td> <td class=xl86 style='border-top:none;border-left:none'>227.6</td>
</tr> </tr>
<![if supportMisalignedColumns]> <![if supportMisalignedColumns]>
<tr height=0 style='display:none'> <tr height=0 style='display:none'>
@ -378,17 +376,16 @@ include "../header.php";
<col width=261 span=2 style='mso-width-source:userset;mso-width-alt:8362; <col width=261 span=2 style='mso-width-source:userset;mso-width-alt:8362;
width:196pt'> width:196pt'>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl123 width=261 style='height:38.0pt;width:196pt'><font class="font20">小電梯</font></td> <td height=51 class=xl123 width=261 style='height:38.0pt;width:196pt'>
<font class="font20">小電梯</font>
</td>
<td class=xl123 width=261 style='width:196pt'>MAH100</td> <td class=xl123 width=261 style='width:196pt'>MAH100</td>
<td class=xl123 width=261 style='width:196pt'>單位:萬元</td> <td class=xl123 width=261 style='width:196pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span <td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td class=xl95 style='border-left:none'>標準價</td> <td class=xl95 style='border-left:none'>標準價</td>
<td class=xl95 style='border-left:none'>(±1S)<span <td class=xl95 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAH100-6*5-2S45</td> <td height=51 class=xl94 style='height:38.0pt;border-top:none'>MAH100-6*5-2S45</td>
@ -422,8 +419,8 @@ include "../header.php";
</tr> </tr>
<tr class=xl67 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl67 height=51 style='mso-height-source:userset;height:38.0pt'>
<td colspan=2 rowspan=4 height=150 class=xl129 width=522 style='height:113.75pt;width:392pt'>註:<br> <td colspan=2 rowspan=4 height=150 class=xl129 width=522 style='height:113.75pt;width:392pt'>註:<br>
1、最低到3停;2停以3停計。<br>
2、經理權限為發佈價之80%、業務部協理權限為75%。</td> 1、處長權限為發布價之80%。</td>
<td class="xl67"></td> <td class="xl67"></td>
</tr> </tr>
<![if supportMisalignedColumns]> <![if supportMisalignedColumns]>
@ -444,85 +441,82 @@ include "../header.php";
<td class=xl123 width=261 style='width:196pt'>單位:萬元</td> <td class=xl123 width=261 style='width:196pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span <td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td class=xl88 style='border-left:none'>標準價</td> <td class=xl88 style='border-left:none'>標準價</td>
<td class=xl92 style='border-left:none'>(±1S)<span <td class=xl92 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>180.0 </td> <td class=xl109 style='border-top:none;border-left:none'>190.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.0 </td> <td class=xl110 style='border-top:none;border-left:none'>4.8 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>181.3 </td> <td class=xl109 style='border-top:none;border-left:none'>191.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.0 </td> <td class=xl110 style='border-top:none;border-left:none'>4.8 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>182.7 </td> <td class=xl109 style='border-top:none;border-left:none'>192.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.0 </td> <td class=xl110 style='border-top:none;border-left:none'>4.8 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>217.1 </td> <td class=xl109 style='border-top:none;border-left:none'>215.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.3 </td> <td class=xl110 style='border-top:none;border-left:none'>5.8 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>225.6 </td> <td class=xl109 style='border-top:none;border-left:none'>223.6 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.4 </td> <td class=xl110 style='border-top:none;border-left:none'>5.9 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-24*20-CO120</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-24*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>240.2 </td> <td class=xl109 style='border-top:none;border-left:none'>238.2 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </td> <td class=xl110 style='border-top:none;border-left:none'>6.0 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*20-CO150</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-12*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>223.0 </td> <td class=xl109 style='border-top:none;border-left:none'>216.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.1 </td> <td class=xl110 style='border-top:none;border-left:none'>5.7 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*20-CO150</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-13*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>224.1 </td> <td class=xl109 style='border-top:none;border-left:none'>224.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.1 </td> <td class=xl110 style='border-top:none;border-left:none'>5.7 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*20-CO150</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-15*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>225.4 </td> <td class=xl109 style='border-top:none;border-left:none'>225.4 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.1 </td> <td class=xl110 style='border-top:none;border-left:none'>5.7 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*20-CO150</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-17*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>239.9 </td> <td class=xl109 style='border-top:none;border-left:none'>236.9 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </td> <td class=xl110 style='border-top:none;border-left:none'>6.0 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*20-CO150</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAE100-20*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>244.3 </td> <td class=xl109 style='border-top:none;border-left:none'>241.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </td> <td class=xl110 style='border-top:none;border-left:none'>6.0 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*20-CO150</td> <td height=51 class=xl90 style='height:38.0pt;border-top:none'>MAE100-24*20-CO150</td>
<td class=xl111 style='border-top:none;border-left:none'>253.3 </td> <td class=xl111 style='border-top:none;border-left:none'>250.3 </td>
<td class=xl112 style='border-top:none;border-left:none'>6.5 </td> <td class=xl112 style='border-top:none;border-left:none'>6.0 </td>
</tr> </tr>
<tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>註:<br>1、2.0及2.5最低到15停;15停以下以15停計</td> <td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>註:<br>1、2.0及2.5最低到15停;15停以下以15停計</td>
<td class=xl99></td> <td class=xl99></td>
</tr> </tr>
<tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>2、P-12(含)以下以P-13計</td> <td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>2、處長權限為發布價之80%</td>
<td class=xl99></td> <td class=xl99></td>
</tr> </tr>
<tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'> <!-- <tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>3、經理權限為發佈價之80%、業務部協理權限為75%。</td> <td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>3、經理權限為發佈價之80%、業務部協理權限為75%。</td>
<td class=xl113></td> <td class=xl113></td>
</tr> </tr> -->
<tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl69 style='height:25.25pt'></td> <td height=33 class=xl69 style='height:25.25pt'></td>
<td class=xl69></td> <td class=xl69></td>
@ -546,94 +540,91 @@ include "../header.php";
<td class=xl123 width=261 style='width:196pt'>單位:萬元</td> <td class=xl123 width=261 style='width:196pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span <td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td class=xl88 style='border-left:none'>標準價</td> <td class=xl88 style='border-left:none'>標準價</td>
<td class=xl92 style='border-left:none'>(±1S)<span <td class=xl92 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
style='mso-spacerun:yes'> </span></td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-750*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>114.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.8 </td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-750*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>115.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.8 </td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1000*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>136.4 </td> <td class=xl109 style='border-top:none;border-left:none'>116.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>8.7 </td> <td class=xl110 style='border-top:none;border-left:none'>5.3 </td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1000*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1000*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>138.5 </td> <td class=xl109 style='border-top:none;border-left:none'>117.8 </td>
<td class=xl110 style='border-top:none;border-left:none'>8.7 </td> <td class=xl110 style='border-top:none;border-left:none'>5.3 </td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1500*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1500*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>171.4 </td> <td class=xl109 style='border-top:none;border-left:none'>145.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>9.7 </td> <td class=xl110 style='border-top:none;border-left:none'>9.8 </td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1500*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-1500*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>175.5 </td> <td class=xl109 style='border-top:none;border-left:none'>149.2 </td>
<td class=xl110 style='border-top:none;border-left:none'>9.7 </td> <td class=xl110 style='border-top:none;border-left:none'>9.8 </td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2000*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>195.3 </td> <td class=xl109 style='border-top:none;border-left:none'>166.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>10.0 </td> <td class=xl110 style='border-top:none;border-left:none'>10.0 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2000*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2000*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>198.5 </td> <td class=xl109 style='border-top:none;border-left:none'>168.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>10.0 </td> <td class=xl110 style='border-top:none;border-left:none'>10.0 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2500*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2500*3-4PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>286.3 </td> <td class=xl109 style='border-top:none;border-left:none'>243.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.1 </td> <td class=xl110 style='border-top:none;border-left:none'>14.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2500*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-2500*3-4PCO60</td>
<td class=xl109 style='border-top:none;border-left:none'>288.3 </td> <td class=xl109 style='border-top:none;border-left:none'>245.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.1 </td> <td class=xl110 style='border-top:none;border-left:none'>14.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3000*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3000*3-4PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>307.7 </td> <td class=xl109 style='border-top:none;border-left:none'>261.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>16.3 </td> <td class=xl110 style='border-top:none;border-left:none'>15.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3000*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3000*3-4PCO60</td>
<td class=xl109 style='border-top:none;border-left:none'>309.5 </td> <td class=xl109 style='border-top:none;border-left:none'>263.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>16.3 </td> <td class=xl110 style='border-top:none;border-left:none'>15.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3500*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3500*3-4PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>365.5 </td> <td class=xl109 style='border-top:none;border-left:none'>310.6 </td>
<td class=xl110 style='border-top:none;border-left:none'>18.2 </td> <td class=xl110 style='border-top:none;border-left:none'>18.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3500*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-3500*3-4PCO60</td>
<td class=xl109 style='border-top:none;border-left:none'>368.5 </td> <td class=xl109 style='border-top:none;border-left:none'>313.2 </td>
<td class=xl110 style='border-top:none;border-left:none'>18.2 </td> <td class=xl110 style='border-top:none;border-left:none'>18.2 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-4000*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-4000*3-6PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>407.5 </td> <td class=xl109 style='border-top:none;border-left:none'>346.4 </td>
<td class=xl110 style='border-top:none;border-left:none'>20.5 </td> <td class=xl110 style='border-top:none;border-left:none'>20.5 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-4000*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-4000*3-6PCO60</td>
<td class=xl109 style='border-top:none;border-left:none'>409.5 </td> <td class=xl109 style='border-top:none;border-left:none'>348.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>20.5 </td> <td class=xl110 style='border-top:none;border-left:none'>20.5 </td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-6PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>442.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>24.0 </td>
</tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-6PCO60</td>
<td class=xl109 style='border-top:none;border-left:none'>447.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>24.0 </td>
</tr>
<!-- <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-2S45</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>520.5 </td> <td class=xl109 style='border-top:none;border-left:none'>520.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>25.5 </td> <td class=xl110 style='border-top:none;border-left:none'>25.5 </td>
@ -642,14 +633,14 @@ include "../header.php";
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-2S60</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAF100-5000*3-2S60</td>
<td class=xl111 style='border-top:none;border-left:none'>525.8 </td> <td class=xl111 style='border-top:none;border-left:none'>525.8 </td>
<td class=xl112 style='border-top:none;border-left:none'>25.5 </td> <td class=xl112 style='border-top:none;border-left:none'>25.5 </td>
</tr> </tr> -->
<tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 style='height:25.25pt'>註:<br>1、最低為2停</td> <td height=33 class=xl99 style='height:25.25pt'>註:<br>1、最低為2停</td>
<td class=xl99></td> <td class=xl99></td>
<td class=xl99></td> <td class=xl99></td>
</tr> </tr>
<tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl67 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>2、經理權限為發佈價之80%、業務部協理權限為75%。</td> <td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>2、處長權限為發佈價之80%。</td>
<td class=xl99></td> <td class=xl99></td>
</tr> </tr>
<![if supportMisalignedColumns]> <![if supportMisalignedColumns]>
@ -670,16 +661,14 @@ include "../header.php";
<td class=xl123 width=323 style='width:242pt'>單位:萬元</td> <td class=xl123 width=323 style='width:242pt'>單位:萬元</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span <td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td class=xl88 style='border-left:none'>標準價</td> <td class=xl88 style='border-left:none'>標準價</td>
<td class=xl88 style='border-left:none'>提升高度標準</td> <td class=xl88 style='border-left:none'>提升高度標準</td>
<td class=xl92 style='border-left:none'>備註</td> <td class=xl92 style='border-left:none'>備註</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*2-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*2-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>78.5 </td> <td class=xl109 style='border-top:none;border-left:none'>75.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>3.0 </td> <td class=xl109 style='border-top:none;border-left:none'>3.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr> </tr>
@ -703,43 +692,43 @@ include "../header.php";
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*2-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*2-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>80.2 </td> <td class=xl109 style='border-top:none;border-left:none'>82.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>3.0 </td> <td class=xl109 style='border-top:none;border-left:none'>3.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*3-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*3-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>88.5 </td> <td class=xl109 style='border-top:none;border-left:none'>90.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>6.0 </td> <td class=xl109 style='border-top:none;border-left:none'>6.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td>
</tr> </tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'> <tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*4-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*4-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>96.5 </td> <td class=xl109 style='border-top:none;border-left:none'>98.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>9.0 </td> <td class=xl109 style='border-top:none;border-left:none'>9.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*5-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-280*5-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>104.5 </td> <td class=xl109 style='border-top:none;border-left:none'>107.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>12.0 </td> <td class=xl109 style='border-top:none;border-left:none'>12.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*2-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*2-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>82.0 </td> <td class=xl109 style='border-top:none;border-left:none'>77.5 </td>
<td class=xl109 style='border-top:none;border-left:none'>3.0 </td> <td class=xl109 style='border-top:none;border-left:none'>3.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*3-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*3-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>90.0 </td> <td class=xl109 style='border-top:none;border-left:none'>88.5 </td>
<td class=xl109 style='border-top:none;border-left:none'>6.0 </td> <td class=xl109 style='border-top:none;border-left:none'>6.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr> </tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'> <tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*4-CO09</td> <td height=51 class=xl89 style='height:38.0pt;border-top:none'>MAP100-320*4-CO09</td>
<td class=xl109 style='border-top:none;border-left:none'>98.0 </td> <td class=xl109 style='border-top:none;border-left:none'>96.5 </td>
<td class=xl109 style='border-top:none;border-left:none'>9.0 </td> <td class=xl109 style='border-top:none;border-left:none'>9.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td> <td class=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr> </tr>
@ -798,7 +787,7 @@ include "../header.php";
<td class=xl99></td> <td class=xl99></td>
</tr> </tr>
<tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'> <tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>3、經理權限為發佈價之80%、業務部協理權限為75%。</td> <td height=33 class=xl99 colspan=2 style='height:25.25pt;mso-ignore:colspan'>3、處長權限為發佈價之80%。</td>
<td class=xl69></td> <td class=xl69></td>
<td class=xl113></td> <td class=xl113></td>
</tr> </tr>

8
wms/mkt/pricereview-create.php

@ -47,6 +47,7 @@ if (count($last_pr_arr) > 0) {
$last_pr_arr["qty_total"] += $last_pritem_arr["A"][$row["item_no"]]["item_qty"]; $last_pr_arr["qty_total"] += $last_pritem_arr["A"][$row["item_no"]]["item_qty"];
} }
} }
mysqli_free_result($res); mysqli_free_result($res);
$sql = "select * from pricereview_pay where mid = '" . $last_pr_arr["id"] . "' order by pay_kind"; $sql = "select * from pricereview_pay where mid = '" . $last_pr_arr["id"] . "' order by pay_kind";
@ -143,6 +144,7 @@ while ($row = mysqli_fetch_assoc($res)) {
$opt_data_arr[$row["kind"]][$row["group_name"]][$row["id"]]["unit"] = $row["unit"]; $opt_data_arr[$row["kind"]][$row["group_name"]][$row["id"]]["unit"] = $row["unit"];
$opt_data_arr[$row["kind"]][$row["group_name"]][$row["id"]]["price"] = $row["price"]; $opt_data_arr[$row["kind"]][$row["group_name"]][$row["id"]]["price"] = $row["price"];
} }
mysqli_free_result($res); mysqli_free_result($res);
$option_str = '<table id="table_index2" class="table table-striped table-bordered" style="width:100%">'; $option_str = '<table id="table_index2" class="table table-striped table-bordered" style="width:100%">';
$option_str .= '<thead> $option_str .= '<thead>
@ -506,7 +508,7 @@ $option_str .= "</tbody></table>";
$(document).ready(function() { $(document).ready(function() {
$('input[name=pay_scale]').each(function() { $('input[name=pay_scale]').each(function() {
if ($(this).val() != '') { if ($(this).val() != '') {
console.log($(this).val()); // console.log($(this).val());
$(this).closest('td').next('td').find('input[name=pay_amount]').val(commafy(($("#price_total").val().replace(/[,]+/g, "") / 100 * $(this).val()).toFixed(0))); $(this).closest('td').next('td').find('input[name=pay_amount]').val(commafy(($("#price_total").val().replace(/[,]+/g, "") / 100 * $(this).val()).toFixed(0)));
var payAllScale = 0; var payAllScale = 0;
var payAllAmt = 0; var payAllAmt = 0;
@ -737,11 +739,13 @@ $option_str .= "</tbody></table>";
var jobj = $(this); // 父視窗 var jobj = $(this); // 父視窗
$("#optionModal .modal-body td").unbind().click(function() { $("#optionModal .modal-body td").unbind().click(function() {
var pobj = $(this).closest('td').parent(); var pobj = $(this).closest('td').parent();
console.log(jobj.html(pobj.find('td').eq(0).html() + ' ' + pobj.find('td').eq(1).html()));
jobj.html(pobj.find('td').eq(0).html() + ' ' + pobj.find('td').eq(1).html()); jobj.html(pobj.find('td').eq(0).html() + ' ' + pobj.find('td').eq(1).html());
jobj.closest('td').parent().find('input[name=option_unit_price]').val(pobj.find('td').eq(5).html()); jobj.closest('td').parent().find('input[name=option_unit_price]').val(pobj.find('td').eq(5).html());
jobj.closest('td').parent().find('input[name=option_price_bp]').val(commafy(pobj.find('td').eq(5).html().replace(/[,]+/g, "") * jobj.closest('td').parent().find('input[name=option_qty]').val().replace(/[,]+/g, ""))); jobj.closest('td').parent().find('input[name=option_price_bp]').val(commafy(pobj.find('td').eq(5).html().replace(/[,]+/g, "") * jobj.closest('td').parent().find('input[name=option_qty]').val().replace(/[,]+/g, "")));
jobj.closest('td').parent().find('input[name=op_id]').val(pobj.find('input[name=option_id]').val()); jobj.closest('td').parent().find('input[name=op_id]').val(pobj.find('input[name=option_id]').val());
$("#optionModal").modal('hide'); $("#optionModal").modal('hide');
}); });
}); });
$("#optionFaciModal").on("hidden.bs.modal", function() { $("#optionFaciModal").on("hidden.bs.modal", function() {
@ -1817,7 +1821,7 @@ if($_SERVER["REQUEST_METHOD"] == "POST"){
?> ?>
<tr name="option_templ"> <tr name="option_templ">
<td name="option_seat"> <td name="option_seat">
<a href="" name="option_href" data-toggle="modal"><?php echo $v["item_spec"]; ?></a> <a href="" name="option_href" data-toggle="modal"><?php echo $v["item_spec"] . '-(' . $v['item-memo'] . ')'; ?></a>
</td> </td>
<td><input type="text" name="option_unit_price" class="form-control dollar-right" size="8" value="<?php echo number_format($v["item_unit_price"]); ?>" readonly></td> <td><input type="text" name="option_unit_price" class="form-control dollar-right" size="8" value="<?php echo number_format($v["item_unit_price"]); ?>" readonly></td>
<td><input type="text" name="option_qty" class="form-control" size="2" maxlength="2" value="<?php echo $v["item_qty"]; ?>"></td> <td><input type="text" name="option_qty" class="form-control" size="2" maxlength="2" value="<?php echo $v["item_qty"]; ?>"></td>

294
wms/mkt/pricereview_renovate-create.php

@ -201,89 +201,123 @@ $option_str .= "</tbody></table>";
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.c_iframe { .c_iframe {
width: 1350px; width: 1350px;
height: 500px; height: 500px;
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
} }
.container { .container {
width: 1350px; width: 1350px;
} }
.nextline { .nextline {
width: 100%; width: 100%;
height: 0; height: 0;
} }
#btnadd, #btnadd2, #btnadd3, #btnadd4, #btnadd5, a[name=btndel], a[name=btndel2], a[name=btndel3], a[name=btndel4], a[name=btndel5] {
#btnadd,
#btnadd2,
#btnadd3,
#btnadd4,
#btnadd5,
a[name=btndel],
a[name=btndel2],
a[name=btndel3],
a[name=btndel4],
a[name=btndel5] {
margin-left: 4px; margin-left: 4px;
} }
tr th svg { tr th svg {
vertical-align: text-top; vertical-align: text-top;
} }
tr select { tr select {
margin: 8px; margin: 8px;
} }
.modal-dialog { .modal-dialog {
width: 1200px; width: 1200px;
} }
.modal-content { .modal-content {
height: 660px; height: 660px;
} }
#optionModal .modal-body { #optionModal .modal-body {
height: 540px; height: 540px;
overflow-y: auto; overflow-y: auto;
} }
#optionFaciModal .modal-body { #optionFaciModal .modal-body {
font-size: 16px; font-size: 16px;
} }
#optionFaciModal .modal-dialog { #optionFaciModal .modal-dialog {
margin-top: 200px; margin-top: 200px;
width: 400px; width: 400px;
} }
#optionFaciModal .modal-content { #optionFaciModal .modal-content {
height: auto; height: auto;
} }
ol li { ol li {
margin-left: -20px; margin-left: -20px;
line-height: 160%; line-height: 160%;
} }
a[name=optdel] { a[name=optdel] {
font-size: 13px; font-size: 13px;
text-decoration: none; text-decoration: none;
} }
.dollar-right { .dollar-right {
text-align: right; text-align: right;
} }
.kind-title { .kind-title {
background-color: black; background-color: black;
color: white; color: white;
font-size: 18px; font-size: 18px;
} }
.kind-col { .kind-col {
color: brown; color: brown;
} }
.col-md-6 { .col-md-6 {
width: 100%; width: 100%;
} }
#table_index2_filter label { #table_index2_filter label {
width: 30%; width: 30%;
} }
#table_index2 { #table_index2 {
cursor: pointer; cursor: pointer;
} }
.notice { .notice {
margin: 0 0 -2px 10px; margin: 0 0 -2px 10px;
color: red; color: red;
} }
.btn2:hover { .btn2:hover {
color: #fff; color: #fff;
} }
button[name=btnpost] { button[name=btnpost] {
margin-top: 12px; margin-top: 12px;
} }
input[type=checkbox] { input[type=checkbox] {
margin: 8px; margin: 8px;
} }
.star { .star {
color: red; color: red;
font-weight: bold; font-weight: bold;
@ -509,6 +543,26 @@ function selDemolition(o) {
$(function() { $(function() {
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();
$(document).ready(function() {
$('input[name=pay_scale]').each(function() {
if ($(this).val() != '') {
// console.log($(this).val());
$(this).closest('td').next('td').find('input[name=pay_amount]').val(commafy(($("#price_total").val().replace(/[,]+/g, "") / 100 * $(this).val()).toFixed(0)));
var payAllScale = 0;
var payAllAmt = 0;
$("input[name=pay_scale]").each(function() {
payAllScale += Number($(this).val().replace(/[,]+/g, ""))
});
$("input[name=pay_amount]").each(function() {
payAllAmt += Number($(this).val().replace(/[,]+/g, ""))
});
$("input[name=pay_all_scale]").val(commafy(payAllScale));
$("input[name=pay_all_amount]").val(commafy(payAllAmt));
}
})
})
$('#table_index2').DataTable({ $('#table_index2').DataTable({
"language": { "language": {
"zeroRecords": "沒有符合的結果", "zeroRecords": "沒有符合的結果",
@ -566,10 +620,18 @@ $(function(){
}); });
}); });
$('#deposit_rate').keyup(function(){ $(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')); }); $('#deposit_rate').keyup(function() {
$('#keep_rate').keyup(function(){ $(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')); }); $(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1'));
$('#warranty_rate').keyup(function(){ $(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')); }); });
$('#special_fee').keyup(function(){ $(this).val($(this).val().replace(/\D/g, "").replace(/\B(?=(\d{3})+(?!\d))/g, ",")); }); $('#keep_rate').keyup(function() {
$(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1'));
});
$('#warranty_rate').keyup(function() {
$(this).val($(this).val().replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1'));
});
$('#special_fee').keyup(function() {
$(this).val($(this).val().replace(/\D/g, "").replace(/\B(?=(\d{3})+(?!\d))/g, ","));
});
/* /*
// for 動態表格的作法:event delegation // for 動態表格的作法:event delegation
$('#tb1').on('click', $("input[name='item_qty']"), function(){ $('#tb1').on('click', $("input[name='item_qty']"), function(){
@ -893,49 +955,79 @@ $(function(){
$('button[name=submit],button[name=save').click(function() { $('button[name=submit],button[name=save').click(function() {
var itemFpidArr = []; var itemFpidArr = [];
$("input[name='fp_id']").each(function(){ if ($(this).val() != '') itemFpidArr.push($(this).val()); }) $("input[name='fp_id']").each(function() {
if ($(this).val() != '') itemFpidArr.push($(this).val());
})
$('#fp_id_all').val(itemFpidArr); $('#fp_id_all').val(itemFpidArr);
var fpKindArr = []; var fpKindArr = [];
$("select[name='fp_kind']").each(function(){ if ($(this).val() != '') fpKindArr.push($(this).val()); }) $("select[name='fp_kind']").each(function() {
if ($(this).val() != '') fpKindArr.push($(this).val());
})
$('#fp_kind_all').val(fpKindArr); $('#fp_kind_all').val(fpKindArr);
var fpSeatArr = []; var fpSeatArr = [];
$("select[name='fp_seat']").each(function(){ if ($(this).val() != '') fpSeatArr.push($(this).val()); }) $("select[name='fp_seat']").each(function() {
if ($(this).val() != '') fpSeatArr.push($(this).val());
})
$('#fp_seat_all').val(fpSeatArr); $('#fp_seat_all').val(fpSeatArr);
var fpNumberofstopArr = []; var fpNumberofstopArr = [];
$("input[name='fp_numberofstop']").each(function(){ if ($(this).val() != '') fpNumberofstopArr.push($(this).val()); }) $("input[name='fp_numberofstop']").each(function() {
if ($(this).val() != '') fpNumberofstopArr.push($(this).val());
})
$('#fp_numberofstop_all').val(fpNumberofstopArr); $('#fp_numberofstop_all').val(fpNumberofstopArr);
var fpSpeedArr = []; var fpSpeedArr = [];
$("select[name='fp_speed']").each(function(){ if ($(this).val() != '') fpSpeedArr.push($(this).val()); }) $("select[name='fp_speed']").each(function() {
if ($(this).val() != '') fpSpeedArr.push($(this).val());
})
$('#fp_speed_all').val(fpSpeedArr); $('#fp_speed_all').val(fpSpeedArr);
var itemOpArr = []; var itemOpArr = [];
$("select[name='item_op']").each(function(){ if ($(this).val() != '') itemOpArr.push($(this).val()); }) $("select[name='item_op']").each(function() {
if ($(this).val() != '') itemOpArr.push($(this).val());
})
$('#item_op_all').val(itemOpArr); $('#item_op_all').val(itemOpArr);
var itemWeightArr = []; var itemWeightArr = [];
$("input[name='item_weight']").each(function(){ if ($(this).val() != '') itemWeightArr.push($(this).val()); }) $("input[name='item_weight']").each(function() {
if ($(this).val() != '') itemWeightArr.push($(this).val());
})
$('#item_weight_all').val(itemWeightArr); $('#item_weight_all').val(itemWeightArr);
var itemSpecArr = []; var itemSpecArr = [];
$("input[name='item_spec']").each(function(){ itemSpecArr.push($(this).val()); }) $("input[name='item_spec']").each(function() {
itemSpecArr.push($(this).val());
})
$('#item_spec_all').val(itemSpecArr); $('#item_spec_all').val(itemSpecArr);
var itemGroupArr = []; var itemGroupArr = [];
$("input[name='item_group']").each(function(){ itemGroupArr.push($(this).val()); }) $("input[name='item_group']").each(function() {
itemGroupArr.push($(this).val());
})
$('#item_group_all').val(itemGroupArr); $('#item_group_all').val(itemGroupArr);
var itemUnitPriceArr = []; var itemUnitPriceArr = [];
$("input[name='item_unit_price']").each(function(){ itemUnitPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_unit_price']").each(function() {
itemUnitPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_unit_price_all').val(itemUnitPriceArr); $('#item_unit_price_all').val(itemUnitPriceArr);
var itemQtyArr = []; var itemQtyArr = [];
$("input[name='item_qty']").each(function(){ itemQtyArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_qty']").each(function() {
itemQtyArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_qty_all').val(itemQtyArr); $('#item_qty_all').val(itemQtyArr);
var itemQtyOriArr = []; var itemQtyOriArr = [];
$("input[name='item_qty_ori']").each(function(){ itemQtyOriArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_qty_ori']").each(function() {
itemQtyOriArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_qty_ori_all').val(itemQtyOriArr); $('#item_qty_ori_all').val(itemQtyOriArr);
var itemPriceBpArr = []; var itemPriceBpArr = [];
$("input[name='item_price_bp']").each(function(){ itemPriceBpArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_price_bp']").each(function() {
itemPriceBpArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_price_bp_all').val(itemPriceBpArr); $('#item_price_bp_all').val(itemPriceBpArr);
var itemPriceCtArr = []; var itemPriceCtArr = [];
$("input[name='item_price_ct']").each(function(){ itemPriceCtArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_price_ct']").each(function() {
itemPriceCtArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_price_ct_all').val(itemPriceCtArr); $('#item_price_ct_all').val(itemPriceCtArr);
var itemPriceArr = []; var itemPriceArr = [];
$("input[name='item_price']").each(function(){ itemPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='item_price']").each(function() {
itemPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#item_price_all').val(itemPriceArr); $('#item_price_all').val(itemPriceArr);
var grossProfitArr = []; var grossProfitArr = [];
$("input[name='gross_profit']").each(function() { $("input[name='gross_profit']").each(function() {
@ -943,106 +1035,174 @@ $(function(){
}) })
$('#gross_profit_all').val(grossProfitArr); $('#gross_profit_all').val(grossProfitArr);
var pvRateArr = []; var pvRateArr = [];
$("input[name='pv_rate']").each(function(){ pvRateArr.push($(this).val()); }) $("input[name='pv_rate']").each(function() {
pvRateArr.push($(this).val());
})
$('#pv_rate_all').val(pvRateArr); $('#pv_rate_all').val(pvRateArr);
var noteArr = []; var noteArr = [];
$("input[name='note']").each(function(){ noteArr.push($(this).val()); }) $("input[name='note']").each(function() {
noteArr.push($(this).val());
})
$('#note_all').val(noteArr); $('#note_all').val(noteArr);
var payKindArr = []; var payKindArr = [];
$("input[name='pay_kind']").each(function(){ payKindArr.push($(this).val()); }) $("input[name='pay_kind']").each(function() {
payKindArr.push($(this).val());
})
$('#pay_kind_all').val(payKindArr); $('#pay_kind_all').val(payKindArr);
var payScaleArr = []; var payScaleArr = [];
$("input[name='pay_scale']").each(function(){ payScaleArr.push($(this).val()); }) $("input[name='pay_scale']").each(function() {
payScaleArr.push($(this).val());
})
$('#pay_scale_all').val(payScaleArr); $('#pay_scale_all').val(payScaleArr);
var payAmountArr = []; var payAmountArr = [];
$("input[name='pay_amount']").each(function(){ payAmountArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='pay_amount']").each(function() {
payAmountArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#pay_amount_all').val(payAmountArr); $('#pay_amount_all').val(payAmountArr);
var payPeriodArr = []; var payPeriodArr = [];
$("select[name='pay_period']").each(function(){ payPeriodArr.push($(this).val()); }) $("select[name='pay_period']").each(function() {
payPeriodArr.push($(this).val());
})
$('#pay_period_all').val(payPeriodArr); $('#pay_period_all').val(payPeriodArr);
var itemOpidArr = []; var itemOpidArr = [];
$("input[name='op_id']").each(function(){ itemOpidArr.push($(this).val()); }) $("input[name='op_id']").each(function() {
itemOpidArr.push($(this).val());
})
$('#op_id_all').val(itemOpidArr); $('#op_id_all').val(itemOpidArr);
var optionSeatArr = []; var optionSeatArr = [];
$("td[name='option_seat'] a").each(function(){ optionSeatArr.push($(this).html()+"@@"); }) $("td[name='option_seat'] a").each(function() {
optionSeatArr.push($(this).html() + "@@");
})
$('#option_seat_all').val(optionSeatArr); $('#option_seat_all').val(optionSeatArr);
var optionUnitPriceArr = []; var optionUnitPriceArr = [];
$("input[name='option_unit_price']").each(function(){ optionUnitPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='option_unit_price']").each(function() {
optionUnitPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#option_unit_price_all').val(optionUnitPriceArr); $('#option_unit_price_all').val(optionUnitPriceArr);
var optionQtyArr = []; var optionQtyArr = [];
$("input[name='option_qty']").each(function(){ optionQtyArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='option_qty']").each(function() {
optionQtyArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#option_qty_all').val(optionQtyArr); $('#option_qty_all').val(optionQtyArr);
var optionPriceBpArr = []; var optionPriceBpArr = [];
$("input[name='option_price_bp']").each(function(){ optionPriceBpArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='option_price_bp']").each(function() {
optionPriceBpArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#option_price_bp_all').val(optionPriceBpArr); $('#option_price_bp_all').val(optionPriceBpArr);
var optionMemoArr = []; var optionMemoArr = [];
$("input[name='option_memo']").each(function(){ optionMemoArr.push($(this).val()+"@@"); }) $("input[name='option_memo']").each(function() {
optionMemoArr.push($(this).val() + "@@");
})
$('#option_memo_all').val(optionMemoArr); $('#option_memo_all').val(optionMemoArr);
var optionRelateFacilArr = []; var optionRelateFacilArr = [];
$("td[name='option_relate_facil']").each(function(){ optionRelateFacilArr.push($(this).html()); }) $("td[name='option_relate_facil']").each(function() {
optionRelateFacilArr.push($(this).html());
})
$('#option_relate_facil_all').val(optionRelateFacilArr); $('#option_relate_facil_all').val(optionRelateFacilArr);
var mnIdArr = []; var mnIdArr = [];
$("input[name='mn_id']").each(function(){ mnIdArr.push($(this).val()); }) $("input[name='mn_id']").each(function() {
mnIdArr.push($(this).val());
})
$('#mn_id_all').val(mnIdArr); $('#mn_id_all').val(mnIdArr);
var mnKindArr = []; var mnKindArr = [];
$("select[name='mn_kind']").each(function(){ mnKindArr.push($(this).val()); }) $("select[name='mn_kind']").each(function() {
mnKindArr.push($(this).val());
})
$('#mn_kind_all').val(mnKindArr); $('#mn_kind_all').val(mnKindArr);
var mnSeatArr = []; var mnSeatArr = [];
$("select[name='mn_seat']").each(function(){ mnSeatArr.push($(this).val()); }) $("select[name='mn_seat']").each(function() {
mnSeatArr.push($(this).val());
})
$('#mn_seat_all').val(mnSeatArr); $('#mn_seat_all').val(mnSeatArr);
var mnNumberofstopArr = []; var mnNumberofstopArr = [];
$("input[name='mn_numberofstop']").each(function(){ mnNumberofstopArr.push($(this).val()); }) $("input[name='mn_numberofstop']").each(function() {
mnNumberofstopArr.push($(this).val());
})
$('#mn_numberofstop_all').val(mnNumberofstopArr); $('#mn_numberofstop_all').val(mnNumberofstopArr);
var mnSpeedArr = []; var mnSpeedArr = [];
$("select[name='mn_speed']").each(function(){ mnSpeedArr.push($(this).val()); }) $("select[name='mn_speed']").each(function() {
mnSpeedArr.push($(this).val());
})
$('#mn_speed_all').val(mnSpeedArr); $('#mn_speed_all').val(mnSpeedArr);
var mnUnitPriceArr = []; var mnUnitPriceArr = [];
$("input[name='mn_unit_price']").each(function(){ mnUnitPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='mn_unit_price']").each(function() {
mnUnitPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#mn_unit_price_all').val(mnUnitPriceArr); $('#mn_unit_price_all').val(mnUnitPriceArr);
var mnQtyArr = []; var mnQtyArr = [];
$("input[name='mn_qty']").each(function(){ mnQtyArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='mn_qty']").each(function() {
mnQtyArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#mn_qty_all').val(mnQtyArr); $('#mn_qty_all').val(mnQtyArr);
var mnPriceBpArr = []; var mnPriceBpArr = [];
$("input[name='mn_price_bp']").each(function(){ mnPriceBpArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='mn_price_bp']").each(function() {
mnPriceBpArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#mn_price_bp_all').val(mnPriceBpArr); $('#mn_price_bp_all').val(mnPriceBpArr);
var mnMemoArr = []; var mnMemoArr = [];
$("input[name='mn_memo']").each(function(){ mnMemoArr.push($(this).val()+"@@"); }) $("input[name='mn_memo']").each(function() {
mnMemoArr.push($(this).val() + "@@");
})
$('#mn_memo_all').val(mnMemoArr); $('#mn_memo_all').val(mnMemoArr);
var mnRelateFacilArr = []; var mnRelateFacilArr = [];
$("td[name='mn_relate_facil']").each(function(){ mnRelateFacilArr.push($(this).html()); }) $("td[name='mn_relate_facil']").each(function() {
mnRelateFacilArr.push($(this).html());
})
$('#mn_relate_facil_all').val(mnRelateFacilArr); $('#mn_relate_facil_all').val(mnRelateFacilArr);
var exNoteArr = []; var exNoteArr = [];
$("input[name='except_note']").each(function(){ exNoteArr.push($(this).val()); }) $("input[name='except_note']").each(function() {
exNoteArr.push($(this).val());
})
$('#except_note_all').val(exNoteArr); $('#except_note_all').val(exNoteArr);
var exSpecArr = []; var exSpecArr = [];
$("input[name='except_spec']").each(function(){ exSpecArr.push($(this).val()); }) $("input[name='except_spec']").each(function() {
exSpecArr.push($(this).val());
})
$('#except_spec_all').val(exSpecArr); $('#except_spec_all').val(exSpecArr);
var exUnitPriceArr = []; var exUnitPriceArr = [];
$("input[name='except_unit_price']").each(function(){ exUnitPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='except_unit_price']").each(function() {
exUnitPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#except_unit_price_all').val(exUnitPriceArr); $('#except_unit_price_all').val(exUnitPriceArr);
var exQtyArr = []; var exQtyArr = [];
$("input[name='except_qty']").each(function(){ exQtyArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='except_qty']").each(function() {
exQtyArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#except_qty_all').val(exQtyArr); $('#except_qty_all').val(exQtyArr);
var exPriceBpArr = []; var exPriceBpArr = [];
$("input[name='except_price_bp']").each(function(){ exPriceBpArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='except_price_bp']").each(function() {
exPriceBpArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#except_price_bp_all').val(exPriceBpArr); $('#except_price_bp_all').val(exPriceBpArr);
var demIdArr = []; var demIdArr = [];
$("input[name='dem_id']").each(function(){ demIdArr.push($(this).val()); }) $("input[name='dem_id']").each(function() {
demIdArr.push($(this).val());
})
$('#dem_id_all').val(demIdArr); $('#dem_id_all').val(demIdArr);
var demSeatArr = []; var demSeatArr = [];
$("select[name='seat']").each(function(){ demSeatArr.push($(this).val()); }) $("select[name='seat']").each(function() {
demSeatArr.push($(this).val());
})
$('#seat_all').val(demSeatArr); $('#seat_all').val(demSeatArr);
var demFloorArr = []; var demFloorArr = [];
$("select[name='floor']").each(function(){ demFloorArr.push($(this).val()); }) $("select[name='floor']").each(function() {
demFloorArr.push($(this).val());
})
$('#floor_all').val(demFloorArr); $('#floor_all').val(demFloorArr);
var demUnitPriceArr = []; var demUnitPriceArr = [];
$("input[name='demolition_unit_price']").each(function(){ demUnitPriceArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='demolition_unit_price']").each(function() {
demUnitPriceArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#demolition_unit_price_all').val(demUnitPriceArr); $('#demolition_unit_price_all').val(demUnitPriceArr);
var demQtyArr = []; var demQtyArr = [];
$("input[name='demolition_qty']").each(function(){ demQtyArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='demolition_qty']").each(function() {
demQtyArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#demolition_qty_all').val(demQtyArr); $('#demolition_qty_all').val(demQtyArr);
var demPriceBpArr = []; var demPriceBpArr = [];
$("input[name='demolition_price_bp']").each(function(){ demPriceBpArr.push($(this).val().replace(/[,]+/g,"")); }) $("input[name='demolition_price_bp']").each(function() {
demPriceBpArr.push($(this).val().replace(/[,]+/g, ""));
})
$('#demolition_price_bp_all').val(demPriceBpArr); $('#demolition_price_bp_all').val(demPriceBpArr);
$("input[name='pmstatus']").val($(this).val()); $("input[name='pmstatus']").val($(this).val());
@ -1760,12 +1920,14 @@ if($_SERVER["REQUEST_METHOD"] == "POST"){
<th>數量</th> <th>數量</th>
<th>複價</th> <th>複價</th>
<th>備註</th> <th>備註</th>
<th class="star"><div data-toggle="tooltip" data-placement="auto" title="每次選完OPTION後,請點選右方紅色按鈕「電梯」來勾選電梯項次">所屬電梯 <th class="star">
<div data-toggle="tooltip" data-placement="auto" title="每次選完OPTION後,請點選右方紅色按鈕「電梯」來勾選電梯項次">所屬電梯
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-info-circle" viewBox="0 0 16 16"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-info-circle" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" /> <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" /> <path d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" />
</svg> </svg>
</div></th> </div>
</th>
<th>功能</th> <th>功能</th>
</tr> </tr>
</thead> </thead>
@ -1906,7 +2068,9 @@ if (count($last_pritem_arr) > 0 && isset($last_pritem_arr["B"])) {
<th>數量(月)</th> <th>數量(月)</th>
<th>複價</th> <th>複價</th>
<th>備註</th> <th>備註</th>
<th class="star">所屬電梯</div></th> <th class="star">所屬電梯
</div>
</th>
<th>功能</th> <th>功能</th>
</tr> </tr>
</thead> </thead>
@ -2157,13 +2321,13 @@ if (count($last_pritem_arr) > 0 && isset($last_pritem_arr["B"])) {
<tr> <tr>
<td rowspan="4">材料</td> <td rowspan="4">材料</td>
<td>1、訂金<input type="hidden" name="pay_kind" value="1"></td> <td>1、訂金<input type="hidden" name="pay_kind" value="1"></td>
<td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo @$last_prpay_arr[1]["pay_scale"]; ?>"></td> <td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo empty(@$last_prpay_arr[1]["pay_scale"]) ? 20 : @$last_prpay_arr[1]["pay_scale"]; ?>"></td>
<td id="pay1"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[1]["pay_amount"]); ?>" readonly></td> <td id="pay1"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[1]["pay_amount"]); ?>" readonly></td>
<td> <td>
<select name="pay_period" class="form-control"> <select name="pay_period" class="form-control">
<option value=""></option> <option value=""></option>
<option value="7" <?php if (@$last_prpay_arr[1]["pay_period"] == "7") echo " selected"; ?>>7天</option> <option value="7" <?php if (@$last_prpay_arr[1]["pay_period"] == "7") echo " selected"; ?>>7天</option>
<option value="30"<?php if (@$last_prpay_arr[1]["pay_period"]=="30") echo " selected"; ?>>30天</option> <option value="30" <?php if (@$last_prpay_arr[1]["pay_period"] == "30" || @$last_prpay_arr[1]["pay_period"] == "") echo " selected"; ?>>30天</option>
<option value="60" <?php if (@$last_prpay_arr[1]["pay_period"] == "60") echo " selected"; ?>>60天</option> <option value="60" <?php if (@$last_prpay_arr[1]["pay_period"] == "60") echo " selected"; ?>>60天</option>
<option value="90" <?php if (@$last_prpay_arr[1]["pay_period"] == "90") echo " selected"; ?>>90天</option> <option value="90" <?php if (@$last_prpay_arr[1]["pay_period"] == "90") echo " selected"; ?>>90天</option>
<option value="120" <?php if (@$last_prpay_arr[1]["pay_period"] == "120") echo " selected"; ?>>120天</option> <option value="120" <?php if (@$last_prpay_arr[1]["pay_period"] == "120") echo " selected"; ?>>120天</option>
@ -2191,13 +2355,13 @@ if (count($last_pritem_arr) > 0 && isset($last_pritem_arr["B"])) {
</tr> </tr>
<tr> <tr>
<td>3、貨到工地款<input type="hidden" name="pay_kind" value="3"></td> <td>3、貨到工地款<input type="hidden" name="pay_kind" value="3"></td>
<td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo @$last_prpay_arr[3]["pay_scale"]; ?>"></td> <td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo empty(@$last_prpay_arr[3]["pay_scale"]) ? 50 : @$last_prpay_arr[3]["pay_scale"]; ?>"></td>
<td id="pay3"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[3]["pay_amount"]); ?>" readonly></td> <td id="pay3"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[3]["pay_amount"]); ?>" readonly></td>
<td> <td>
<select name="pay_period" class="form-control"> <select name="pay_period" class="form-control">
<option value=""></option> <option value=""></option>
<option value="7" <?php if (@$last_prpay_arr[3]["pay_period"] == "7") echo " selected"; ?>>7天</option> <option value="7" <?php if (@$last_prpay_arr[3]["pay_period"] == "7") echo " selected"; ?>>7天</option>
<option value="30"<?php if (@$last_prpay_arr[3]["pay_period"]=="30") echo " selected"; ?>>30天</option> <option value="30" <?php if (@$last_prpay_arr[3]["pay_period"] == "30" || @$last_prpay_arr[3]["pay_period"] == "") echo " selected"; ?>>30天</option>
<option value="60" <?php if (@$last_prpay_arr[3]["pay_period"] == "60") echo " selected"; ?>>60天</option> <option value="60" <?php if (@$last_prpay_arr[3]["pay_period"] == "60") echo " selected"; ?>>60天</option>
<option value="90" <?php if (@$last_prpay_arr[3]["pay_period"] == "90") echo " selected"; ?>>90天</option> <option value="90" <?php if (@$last_prpay_arr[3]["pay_period"] == "90") echo " selected"; ?>>90天</option>
<option value="120" <?php if (@$last_prpay_arr[3]["pay_period"] == "120") echo " selected"; ?>>120天</option> <option value="120" <?php if (@$last_prpay_arr[3]["pay_period"] == "120") echo " selected"; ?>>120天</option>
@ -2226,13 +2390,13 @@ if (count($last_pritem_arr) > 0 && isset($last_pritem_arr["B"])) {
<tr> <tr>
<td rowspan="3">安裝</td> <td rowspan="3">安裝</td>
<td>5、安裝完畢款<input type="hidden" name="pay_kind" value="5"></td> <td>5、安裝完畢款<input type="hidden" name="pay_kind" value="5"></td>
<td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo @$last_prpay_arr[5]["pay_scale"]; ?>"></td> <td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo empty(@$last_prpay_arr[5]["pay_scale"]) ? 20 : @$last_prpay_arr[5]["pay_scale"];; ?>"></td>
<td id="pay5"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[5]["pay_amount"]); ?>" readonly></td> <td id="pay5"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[5]["pay_amount"]); ?>" readonly></td>
<td> <td>
<select name="pay_period" class="form-control"> <select name="pay_period" class="form-control">
<option value=""></option> <option value=""></option>
<option value="7" <?php if (@$last_prpay_arr[5]["pay_period"] == "7") echo " selected"; ?>>7天</option> <option value="7" <?php if (@$last_prpay_arr[5]["pay_period"] == "7") echo " selected"; ?>>7天</option>
<option value="30"<?php if (@$last_prpay_arr[5]["pay_period"]=="30") echo " selected"; ?>>30天</option> <option value="30" <?php if (@$last_prpay_arr[5]["pay_period"] == "30" || @$last_prpay_arr[5]["pay_period"] == "") echo " selected"; ?>>30天</option>
<option value="60" <?php if (@$last_prpay_arr[5]["pay_period"] == "60") echo " selected"; ?>>60天</option> <option value="60" <?php if (@$last_prpay_arr[5]["pay_period"] == "60") echo " selected"; ?>>60天</option>
<option value="90" <?php if (@$last_prpay_arr[5]["pay_period"] == "90") echo " selected"; ?>>90天</option> <option value="90" <?php if (@$last_prpay_arr[5]["pay_period"] == "90") echo " selected"; ?>>90天</option>
<option value="120" <?php if (@$last_prpay_arr[5]["pay_period"] == "120") echo " selected"; ?>>120天</option> <option value="120" <?php if (@$last_prpay_arr[5]["pay_period"] == "120") echo " selected"; ?>>120天</option>
@ -2243,13 +2407,13 @@ if (count($last_pritem_arr) > 0 && isset($last_pritem_arr["B"])) {
</tr> </tr>
<tr> <tr>
<td>6、驗收款<input type="hidden" name="pay_kind" value="6"></td> <td>6、驗收款<input type="hidden" name="pay_kind" value="6"></td>
<td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo @$last_prpay_arr[6]["pay_scale"]; ?>"></td> <td><input type="text" name="pay_scale" class="form-control" size="3" value="<?php echo empty(@$last_prpay_arr[6]["pay_scale"]) ? 10 : @$last_prpay_arr[6]["pay_scale"]; ?>"></td>
<td id="pay6"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[6]["pay_amount"]); ?>" readonly></td> <td id="pay6"><input type="text" name="pay_amount" class="form-control dollar-right" size="8" value="<?php echo number_format(@$last_prpay_arr[6]["pay_amount"]); ?>" readonly></td>
<td> <td>
<select name="pay_period" class="form-control"> <select name="pay_period" class="form-control">
<option value=""></option> <option value=""></option>
<option value="7" <?php if (@$last_prpay_arr[6]["pay_period"] == "7") echo " selected"; ?>>7天</option> <option value="7" <?php if (@$last_prpay_arr[6]["pay_period"] == "7") echo " selected"; ?>>7天</option>
<option value="30"<?php if (@$last_prpay_arr[6]["pay_period"]=="30") echo " selected"; ?>>30天</option> <option value="30" <?php if (@$last_prpay_arr[6]["pay_period"] == "30" || @$last_prpay_arr[6]["pay_period"] == '') echo " selected"; ?>>30天</option>
<option value="60" <?php if (@$last_prpay_arr[6]["pay_period"] == "60") echo " selected"; ?>>60天</option> <option value="60" <?php if (@$last_prpay_arr[6]["pay_period"] == "60") echo " selected"; ?>>60天</option>
<option value="90" <?php if (@$last_prpay_arr[6]["pay_period"] == "90") echo " selected"; ?>>90天</option> <option value="90" <?php if (@$last_prpay_arr[6]["pay_period"] == "90") echo " selected"; ?>>90天</option>
<option value="120" <?php if (@$last_prpay_arr[6]["pay_period"] == "120") echo " selected"; ?>>120天</option> <option value="120" <?php if (@$last_prpay_arr[6]["pay_period"] == "120") echo " selected"; ?>>120天</option>

Loading…
Cancel
Save