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. 411
      wms/mkt/price_normal-index.php
  4. 8
      wms/mkt/pricereview-create.php
  5. 1388
      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
where 1=1 $where ORDER BY vol_no";
$data = mysqli_query($link, $sql);
echo '<pre>';
print_r($sql);
echo '</pre>';
// echo '<pre>';
// print_r($sql);
// 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;
$num = !empty($data['num']) ? $data['num'] : null; // 電梯數量
$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;
@ -368,11 +370,12 @@ function T8insert($data, $facilityno)
$createTime = str_replace("-", '', $date);
$beginDate = str_replace("-", '', $contract_begin_date);
$endDate = str_replace("-", '', $contract_end_date);
// if (empty($result)) {
if (empty($result)) {
// 若 客戶資料為空,新增一筆到 comCustomer
// 新增客戶資料
$sql = "INSERT INTO comBusinessPartner(BizPartnerId,BizPartnerName,BusinessAttr,WorkTelNo,BizToDate,TaxNo,EnterpriseName,ContactAddress,EMail,CreatorId,CreateTime,BizPartnerTypeId)
VALUES(:BizPartnerId,:BizPartnerName,1,:WorkTelNo,99999999,:TaxNo,:EnterpriseName,:ContactAddress,:EMail,:CreatorId,:CreateTime,'10')";
$sql = "INSERT INTO comBusinessPartner
(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->bindParam(':BizPartnerId', $contractno);
$stmt->bindParam(':BizPartnerName', $partyA);
@ -386,8 +389,8 @@ function T8insert($data, $facilityno)
$stmt->execute();
$sql = "INSERT INTO comCustomer(OrgId,BizPartnerTypeId,BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime)
VALUES('1000','10',:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime)";
$sql = "INSERT INTO comCustomer(OrgId,BizPartnerTypeId,CurrId,BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime)
VALUES('1000','10','TWD',:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime)";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':BizPartnerId', $contractno);
@ -397,112 +400,113 @@ function T8insert($data, $facilityno)
$stmt->bindParam(':CreateTime', $createTime);
$stmt->execute();
// $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 {
} else {
// // 若客戶資料不為空,更新該客戶資訊。
// $sql = "UPDATE comCustomer SET
// PersonId=:PersonId,
// InvoiceAddress=:InvoiceAddress,
// LastOperatorId=:LastOperatorId,
// LastOperateTime=:LastOperateTime,
// WHERE BizPartnerId=:BizPartnerId
// ";
// $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':PersonId', $salesman);
// $stmt->bindParam(':InvoiceAddress', $address);
// $stmt->bindParam(':LastOperatorId', $user_id);
// $stmt->bindParam(':LastOperateTime', $createTime);
// $stmt->bindParam(':BizPartnerId', $contractno);
// $stmt->execute();
$sql = "UPDATE comCustomer SET
PersonId=:PersonId,
InvoiceAddress=:InvoiceAddress,
LastOperatorId=:LastOperatorId,
LastOperateTime=:LastOperateTime
WHERE BizPartnerId=:BizPartnerId
";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':PersonId', $salesman);
$stmt->bindParam(':InvoiceAddress', $address);
$stmt->bindParam(':LastOperatorId', $user_id);
$stmt->bindParam(':LastOperateTime', $createTime);
$stmt->bindParam(':BizPartnerId', $contractno);
$stmt->execute();
// $sql = "UPDATE comBusinessPartner SET
// BizPartnerName=:BizPartnerName,
// WorkTelNo=:WorkTelNo,
// TaxNo=:TaxNo,
// EnterpriseName=:EnterpriseName,
// ContractAddress=:ContractAddress,
// EMail=:EMail,
// LastOperatorId=:LastOperatorId,
// LastOperateTime=:LastOperateTime
// WHERE BizPartnerId = :BizPartnerId
// ";
// $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':BizPartnerName', $partyA);
// $stmt->bindParam(':WorkTelNo', $phone);
// $stmt->bindParam(':TaxNo', $vat);
// $stmt->bindParam(':EnterpriseName', $customer);
// $stmt->bindParam(':ContractAddress', $partyAaddress);
// $stmt->bindParam(':EMail', $email);
// $stmt->bindParam(':LastOperatorId', $user_id);
// $stmt->bindParam(':LastOperateTime', $createTime);
// $stmt->bindParam(':BizPartnerId', $contractno);
// $stmt->execute();
// }
$sql = "UPDATE comBusinessPartner SET
BizPartnerName=:BizPartnerName,
WorkTelNo=:WorkTelNo,
TaxNo=:TaxNo,
EnterpriseName=:EnterpriseName,
ContactAddress=:ContactAddress,
EMail=:EMail,
LastOperatorId=:LastOperatorId,
LastOperateTime=:LastOperateTime
WHERE BizPartnerId = :BizPartnerId
";
$stmt = $connT8->prepare($sql);
$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(':LastOperatorId', $user_id);
$stmt->bindParam(':LastOperateTime', $createTime);
$stmt->bindParam(':BizPartnerId', $contractno);
$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
// $sql = "INSERT INTO comProject(ProjectId,ProjectName,TypeId,ValidityFromDate,ValidityToDate,CreateTime,CreatorId,IsInUsed) VALUES(:ProjectId,:ProjectName,:TypeId,:ValidityFromDate,ValidityToDate,:CreateTime,:CreatorId,1)";
// $stmt = $connT8->prepare($sql);
// $stmt->bindParam(':ProjectId', $contractno);
// $stmt->bindParam(':ProjectName', $customer);
// $stmt->bindParam(':TypeId', $elevators['maintainance']);
// $stmt->bindParam(':ValidityFromDate', $beginDate);
// $stmt->bindParam(':ValidityToDate', $endDate);
// $stmt->bindParam(':CreateTime', $createTime);
// $stmt->bindParam(':CreatorId', $user_id);
// $stmt->execute();
$sql = "INSERT INTO comProject(ProjectId,ProjectName,TypeId,ValidityFromDate,ValidityToDate,CreateTime,CreatorId,IsInUsed)
VALUES(:ProjectId,:ProjectName,:TypeId,:ValidityFromDate,:ValidityToDate,:CreateTime,:CreatorId,1)";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':ProjectId', $contractno);
$stmt->bindParam(':ProjectName', $customer);
$stmt->bindParam(':TypeId', $type);
$stmt->bindParam(':ValidityFromDate', $beginDate);
$stmt->bindParam(':ValidityToDate', $endDate);
$stmt->bindParam(':CreateTime', $createTime);
$stmt->bindParam(':CreatorId', $user_id);
$stmt->execute();
// // 新增電梯數
// foreach ($elevators as $index => $elevator) {
// echo '<pre>';
// print_r($elevator);
// echo '</pre>';
// if ($elevator['maintainance'] == 'A') {
// $elevator['maintainance'] = 'C3';
// } else if ($elevator['maintainance'] == 'B') {
// $elevator['maintainance'] = 'C4';
// } else if ($elevator['maintainance'] == 'C') {
// $elevator['maintainance'] = 'C5';
// }
// $sql = "INSERT INTO comMaterial(MaterialId,MaterialCategoryId,CreatorId,CreateTime) VALUES (:MaterialId,'E',:CreatorId,:CreateTime)";
// $stmt = $connT8->prepare($sql);
// $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();
// /// 還沒修完
foreach ($elevators as $index => $elevator) {
echo '<pre>';
print_r($elevator);
echo '</pre>';
$sql = "INSERT INTO comMaterial
(MaterialId,MaterialCategoryId,CreatorId,CreateTime)
VALUES (:MaterialId,'E',:CreatorId,:CreateTime)";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':MaterialId', $facilityno[$index]);
$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();
$sql = "INSERT INTO comMaterialGroup
(MaterialTypeId,MaterialId,MaterialName,MaterialCategoryId,UnitId,CreatorId,CreateTime)
VALUES ('10',: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)";
$stmt = $connT8->prepare($sql);
$stmt->bindParam(':MaterialId', $facilityno[$index]);
$stmt->bindParam(':CreatorId', $user_id);
$stmt->bindParam(':CreateTime', $createTime);
$stmt->execute();
}
$connT8->commit();
// }
}

411
wms/mkt/price_normal-index.php

@ -4,26 +4,31 @@ include "../header.php";
<link rel="stylesheet" href="css/price-stylesheet.css?t=3" />
<style>
.container {
.container {
padding-top: 10px !important;
}
#exTab1 .tab-content {
color : white;
padding : 5px 15px;
}
/* remove border radius for the tab */
#exTab1 .nav-pills > li > a {
}
#exTab1 .tab-content {
color: white;
padding: 5px 15px;
}
/* remove border radius for the tab */
#exTab1 .nav-pills>li>a {
border-radius: 10%;
font-size: 16px;
}
#exTab1 .tab-content table {
border:1px solid #000;
}
}
#exTab1 .tab-content table {
border: 1px solid #000;
}
</style>
<div style="overflow-x:auto;">
<div class="container"><h2>電梯標準價查詢</h2></div>
<div id="exTab1" class="container">
<div class="container">
<h2>電梯標準價查詢</h2>
</div>
<div id="exTab1" class="container">
<ul class="nav nav-pills">
<li class="active"><a href="#1a" data-toggle="tab">小機房</a></li>
<li><a href="#2a" data-toggle="tab">無機房</a></li>
@ -51,36 +56,34 @@ include "../header.php";
<td class=xl123 width=213 style='width:160pt'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><font class="font21"><span
style='mso-spacerun:yes'>                </span></font></td>
<td height=51 class=xl89 style='height:38.0pt'><span style='mso-spacerun:yes'> </span>
<font class="font21"><span style='mso-spacerun:yes'>                </span></font>
</td>
<td class=xl89 style='border-top:none;border-left:none'>標準價</td>
<td class=xl89 style='border-top:none;border-left:none'>(±1S)<span
style='mso-spacerun:yes'> </span></td>
<td class=xl89 style='border-top:none;border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
<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>
2、1.5及1.75最低到8停;8停以下以8停計。<br>
3、1.5變為1.75---》+5.4萬/台;加減1停同1.5。<br>
4、經理權限為發佈價之80%、業務部協理權限為75%。</td>
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、處長權限為發佈價之80%。<br>
</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'>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>
</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'>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>
</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'>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>
</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'>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>
</tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
@ -90,64 +93,63 @@ include "../header.php";
</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'>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>
</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'>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>
</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'>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>
</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'>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'>5.1</td>
<td class=xl81 style='border-top:none;border-left:none'>130.6</td>
<td class=xl81 style='border-top:none;border-left:none'>4.5</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'>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'>5.4</td>
<td class=xl81 style='border-top:none;border-left:none'>150.2</td>
<td class=xl81 style='border-top:none;border-left:none'>4.9</td>
</tr>
<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 class=xl81 style='border-top:none;border-left:none'>158.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'>155.4</td>
<td class=xl81 style='border-top:none;border-left:none'>4.9</td>
</tr>
<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>
</tr>
<tr class=xl66 height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl89 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><font class="font21"><span
style='mso-spacerun:yes'>                </span></font></td>
<td height=51 class=xl89 style='height:38.0pt'><span style='mso-spacerun:yes'> </span>
<font class="font21"><span style='mso-spacerun:yes'>                </span></font>
</td>
<td class=xl89 style='border-left:none'>標準價</td>
<td class=xl89 style='border-left:none'>(±1S)<span
style='mso-spacerun:yes'> </span></td>
<td class=xl89 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
<td class=xl91 style='border-left:none'>規格</td>
<td class=xl92 style='border-left:none'>標準價</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'>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=xl114 style='border-top:none'>MAE100-8*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>106.3</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'>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=xl114 style='border-top:none'>MAE100-9*10-CO105</td>
<td class=xl81 style='border-top:none;border-left:none'>107.4</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'>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=xl114 style='border-top:none'>MAE100-10*10-CO105</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'>4.0</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 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 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=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 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 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=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 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 class=xl81 style='border-top:none;border-left:none'>151.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'>148.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=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 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 class=xl81 style='border-top:none;border-left:none'>173.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'>170.0</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=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 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 class=xl81 style='border-top:none;border-left:none'>192.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'>188.0</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=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>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
@ -210,7 +212,7 @@ include "../header.php";
<td width=213 style='width:160pt'></td>
</tr>
<![endif]>
</table>
</table>
</div>
<div class="tab-pane" id="2a">
<table border=0 cellpadding=0 cellspacing=0 width=1021 style='border-collapse:
@ -227,137 +229,133 @@ include "../header.php";
<td class=xl123 width=213 style='width:160pt'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl93 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td height=51 class=xl93 style='height:38.0pt'><span 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'>(±1S)<span
style='mso-spacerun:yes'> </span></td>
<td class=xl93 style='border-top:none;border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
<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>
2、1.5及1.75最低到8停;8停以下以8停計。<br>
3、1.5變為1.75---》+5.4萬/台;加減1停同1.5。<br>
4、營業員權限為發佈價之73%</td>
width:353pt;vertical-align:middle;text-align:left;font-size:16px;'>1、1.5及1.75停最低到5停;5停以下以5停計。<br>
2、處長權限為發布價之80%。<br>
</td>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 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>
</tr>
<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 class=xl83 style='border-top:none;border-left:none'>187.4</td>
<td class=xl83 style='border-top:none;border-left:none'>6.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'>5.7</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'>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'>6.4</td>
<td class=xl83 style='border-top:none;border-left:none'>194.8</td>
<td class=xl83 style='border-top:none;border-left:none'>5.7</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'>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'>6.4</td>
<td class=xl83 style='border-top:none;border-left:none'>198.3</td>
<td class=xl83 style='border-top:none;border-left:none'>5.7</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'>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=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 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 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=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 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 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=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 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 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=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 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 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=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 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 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=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 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 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=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 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 class=xl83 style='border-top:none;border-left:none'>202.8</td>
<td class=xl83 style='border-top:none;border-left:none'>6.5</td>
<td class=xl83 style='border-top:none;border-left:none'>196.6</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=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 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 class=xl83 style='border-top:none;border-left:none'>220.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'>213.2</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=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 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 class=xl85 style='border-top:none;border-left:none'>223.9</td>
<td class=xl85 style='border-top:none;border-left:none'>6.5</td>
<td class=xl85 style='border-top:none;border-left:none'>216.7</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=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>
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
@ -368,7 +366,7 @@ include "../header.php";
<td width=213 style='width:160pt'></td>
</tr>
<![endif]>
</table>
</table>
</div>
<div class="tab-pane" id="3a">
<table border=0 cellpadding=0 cellspacing=0 width=854 style='border-collapse:
@ -378,17 +376,16 @@ include "../header.php";
<col width=261 span=2 style='mso-width-source:userset;mso-width-alt:8362;
width:196pt'>
<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'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td height=51 class=xl95 style='height:38.0pt'><span 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'>(±1S)<span
style='mso-spacerun:yes'> </span></td>
<td class=xl95 style='border-left:none'>(±1S)<span style='mso-spacerun:yes'> </span></td>
</tr>
<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>
@ -422,8 +419,8 @@ include "../header.php";
</tr>
<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>
1、最低到3停;2停以3停計。<br>
2、經理權限為發佈價之80%、業務部協理權限為75%。</td>
1、處長權限為發布價之80%。</td>
<td class="xl67"></td>
</tr>
<![if supportMisalignedColumns]>
@ -433,7 +430,7 @@ include "../header.php";
<td width=261 style='width:196pt'></td>
</tr>
<![endif]>
</table>
</table>
</div>
<div class="tab-pane" id="4a">
<table border=0 cellpadding=0 cellspacing=0 width=783 style='border-collapse:
@ -444,85 +441,82 @@ include "../header.php";
<td class=xl123 width=261 style='width:196pt'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
<td class=xl88 style='border-left:none'>標準價</td>
<td class=xl92 style='border-left:none'>(±1S)<span
style='mso-spacerun:yes'> </span></td>
<td class=xl92 style='border-left:none'>(±1S)<span 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'>MAE100-12*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>180.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.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'>4.8 </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'>MAE100-13*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>181.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>191.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>4.8 </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'>MAE100-15*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>182.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.0 </td>
<td class=xl109 style='border-top:none;border-left:none'>192.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>4.8 </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'>MAE100-17*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>217.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.3 </td>
<td class=xl109 style='border-top:none;border-left:none'>215.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.8 </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'>MAE100-20*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>225.6 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.4 </td>
<td class=xl109 style='border-top:none;border-left:none'>223.6 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.9 </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'>MAE100-24*20-CO120</td>
<td class=xl109 style='border-top:none;border-left:none'>240.2 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </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.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'>MAE100-12*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>223.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.1 </td>
<td class=xl109 style='border-top:none;border-left:none'>216.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.7 </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'>MAE100-13*20-CO150</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 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 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 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 class=xl109 style='border-top:none;border-left:none'>239.9 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </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.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'>MAE100-20*20-CO150</td>
<td class=xl109 style='border-top:none;border-left:none'>244.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>6.5 </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.0 </td>
</tr>
<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 class=xl111 style='border-top:none;border-left:none'>253.3 </td>
<td class=xl112 style='border-top:none;border-left:none'>6.5 </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.0 </td>
</tr>
<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>
</tr>
<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>
</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 class=xl113></td>
</tr>
</tr> -->
<tr class=xl69 height=33 style='mso-height-source:userset;height:25.25pt'>
<td height=33 class=xl69 style='height:25.25pt'></td>
<td class=xl69></td>
@ -535,7 +529,7 @@ include "../header.php";
<td width=261 style='width:196pt'></td>
</tr>
<![endif]>
</table>
</table>
</div>
<div class="tab-pane" id="5a">
<table border=0 cellpadding=0 cellspacing=0 width=783 style='border-collapse:
@ -546,94 +540,91 @@ include "../header.php";
<td class=xl123 width=261 style='width:196pt'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td height=51 class=xl95 style='height:38.0pt'><span style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'>                </span></td>
<td class=xl88 style='border-left:none'>標準價</td>
<td class=xl92 style='border-left:none'>(±1S)<span
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>
<td class=xl92 style='border-left:none'>(±1S)<span 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-1000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>136.4 </td>
<td class=xl110 style='border-top:none;border-left:none'>8.7 </td>
<td class=xl109 style='border-top:none;border-left:none'>116.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.3 </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-1000*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>138.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>8.7 </td>
<td class=xl109 style='border-top:none;border-left:none'>117.8 </td>
<td class=xl110 style='border-top:none;border-left:none'>5.3 </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-1500*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>171.4 </td>
<td class=xl110 style='border-top:none;border-left:none'>9.7 </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.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-1500*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>175.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>9.7 </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.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-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>
</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 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>
</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-2500*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>286.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.1 </td>
<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-4PCO45</td>
<td class=xl109 style='border-top:none;border-left:none'>243.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>14.2 </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-2500*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>288.3 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.1 </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'>245.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>14.2 </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-3000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>307.7 </td>
<td class=xl110 style='border-top:none;border-left:none'>16.3 </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'>261.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.2 </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-3000*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>309.5 </td>
<td class=xl110 style='border-top:none;border-left:none'>16.3 </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'>263.0 </td>
<td class=xl110 style='border-top:none;border-left:none'>15.2 </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-3500*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>365.5 </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'>310.6 </td>
<td class=xl110 style='border-top:none;border-left:none'>18.2 </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-3500*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>368.5 </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'>313.2 </td>
<td class=xl110 style='border-top:none;border-left:none'>18.2 </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-4000*3-2S45</td>
<td class=xl109 style='border-top:none;border-left:none'>407.5 </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'>346.4 </td>
<td class=xl110 style='border-top:none;border-left:none'>20.5 </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-4000*3-2S60</td>
<td class=xl109 style='border-top:none;border-left:none'>409.5 </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'>348.1 </td>
<td class=xl110 style='border-top:none;border-left:none'>20.5 </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-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 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>
@ -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 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>
</tr>
</tr> -->
<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 class=xl99></td>
<td class=xl99></td>
</tr>
<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>
</tr>
<![if supportMisalignedColumns]>
@ -659,10 +650,10 @@ include "../header.php";
<td width=261 style='width:196pt'></td>
</tr>
<![endif]>
</table>
</div>
<div class="tab-pane" id="6a">
<table border=0 cellpadding=0 cellspacing=0 width=1052>
</table>
</div>
<div class="tab-pane" id="6a">
<table border=0 cellpadding=0 cellspacing=0 width=1052>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl123 width=261 style='height:38.0pt;width:196pt'></td>
<td class=xl123 width=261 style='width:196pt'>平台梯</td>
@ -670,16 +661,14 @@ include "../header.php";
<td class=xl123 width=323 style='width:242pt'>單位:萬元</td>
</tr>
<tr height=51 style='mso-height-source:userset;height:38.0pt'>
<td height=51 class=xl95 style='height:38.0pt'><span
style='mso-spacerun:yes'> </span><span
style='mso-spacerun:yes'>                </span></td>
<td height=51 class=xl95 style='height:38.0pt'><span 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'>備註</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'>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=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr>
@ -703,43 +692,43 @@ include "../header.php";
</tr>
<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 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=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>人造皮革;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</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'>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=xl110 style='border-top:none;border-left:none'>岩板;L型開門另加3萬元/台</td>
</tr>
@ -798,7 +787,7 @@ include "../header.php";
<td class=xl99></td>
</tr>
<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=xl113></td>
</tr>
@ -816,8 +805,8 @@ include "../header.php";
<td width=323 style='width:242pt'></td>
</tr>
<![endif]>
</table>
</div>
</table>
</div>
</div>
</div>
</div>

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"];
}
}
mysqli_free_result($res);
$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"]]["price"] = $row["price"];
}
mysqli_free_result($res);
$option_str = '<table id="table_index2" class="table table-striped table-bordered" style="width:100%">';
$option_str .= '<thead>
@ -506,7 +508,7 @@ $option_str .= "</tbody></table>";
$(document).ready(function() {
$('input[name=pay_scale]').each(function() {
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)));
var payAllScale = 0;
var payAllAmt = 0;
@ -737,11 +739,13 @@ $option_str .= "</tbody></table>";
var jobj = $(this); // 父視窗
$("#optionModal .modal-body td").unbind().click(function() {
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.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=op_id]').val(pobj.find('input[name=option_id]').val());
$("#optionModal").modal('hide');
});
});
$("#optionFaciModal").on("hidden.bs.modal", function() {
@ -1817,7 +1821,7 @@ if($_SERVER["REQUEST_METHOD"] == "POST"){
?>
<tr name="option_templ">
<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><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>

1388
wms/mkt/pricereview_renovate-create.php

File diff suppressed because it is too large
Loading…
Cancel
Save