Skip to content
Home » [Update] แจก code ใบเสนอราคาออนไลน์ เขียนโค้ดเองทำได้และ เอามาแบ่งปันครับผม เอาประยุกต์ก็ได้นะครับ | แบบ ฟอร์ม เสนอ ราคา – NATAVIGUIDES

[Update] แจก code ใบเสนอราคาออนไลน์ เขียนโค้ดเองทำได้และ เอามาแบ่งปันครับผม เอาประยุกต์ก็ได้นะครับ | แบบ ฟอร์ม เสนอ ราคา – NATAVIGUIDES

แบบ ฟอร์ม เสนอ ราคา: นี่คือโพสต์ที่เกี่ยวข้องกับหัวข้อนี้

Code (PHP)

<?
ob_start();
session_start();
if($_SESSION["userlogin"]=="")
{
header("location:login_request.php");
exit();
}
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล 
require_once('connect.php');
?>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>ใบเสนอราคา (Quotation)</title>
<link href="sty.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
	background-color: #CCC;
}
-->
</style></head>

<body>
      <form name ="autoSumForm" action="quotation_add_check.php" method="post" onSubmit="return check()">
<table width="720" border="1" align="center" class="coll" cellpadding="0" cellspacing="0">
  
  <tr>
    <td width="2169" height="493" colspan="3" align="left" valign="top">
     
    <SCRIPT Language="JavaScript">
function startCalc(){ 
interval = setInterval("calc()",1); 
} 
function calc(){ 
qua1 = document.autoSumForm.txtQua1.value; 
unit1 = document.autoSumForm.txtUnit1.value; 
qua2 = document.autoSumForm.txtQua2.value; 
unit2 = document.autoSumForm.txtUnit2.value; 
qua3 = document.autoSumForm.txtQua3.value; 
unit3 = document.autoSumForm.txtUnit3.value; 
qua4 = document.autoSumForm.txtQua4.value; 
unit4 = document.autoSumForm.txtUnit4.value; 
qua5 = document.autoSumForm.txtQua5.value; 
unit5 = document.autoSumForm.txtUnit5.value; 
qua6 = document.autoSumForm.txtQua6.value; 
unit6 = document.autoSumForm.txtUnit6.value; 
qua7 = document.autoSumForm.txtQua7.value; 
unit7 = document.autoSumForm.txtUnit7.value; 
qua8 = document.autoSumForm.txtQua8.value; 
unit8 = document.autoSumForm.txtUnit8.value; 
qua9 = document.autoSumForm.txtQua9.value; 
unit9 = document.autoSumForm.txtUnit9.value; 
qua10 = document.autoSumForm.txtQua10.value; 
unit10 = document.autoSumForm.txtUnit10.value; 

amount1 = document.autoSumForm.txtAmount1.value = (qua1 * 1) * (unit1 * 1); 
amount2 = document.autoSumForm.txtAmount2.value = (qua2 * 1) * (unit2 * 1); 
amount3 = document.autoSumForm.txtAmount3.value = (qua3 * 1) * (unit3 * 1); 
amount4 = document.autoSumForm.txtAmount4.value = (qua4 * 1) * (unit4 * 1); 
amount5 = document.autoSumForm.txtAmount5.value = (qua5 * 1) * (unit5 * 1); 
amount6 = document.autoSumForm.txtAmount6.value = (qua6 * 1) * (unit6 * 1); 
amount7 = document.autoSumForm.txtAmount7.value = (qua7 * 1) * (unit7 * 1); 
amount8 = document.autoSumForm.txtAmount8.value = (qua8 * 1) * (unit8 * 1); 
amount9 = document.autoSumForm.txtAmount9.value = (qua9 * 1) * (unit9 * 1); 
amount10 = document.autoSumForm.txtAmount10.value = (qua10 * 1) * (unit10 * 1); 

sum = document.autoSumForm.txtSum.value = (amount1 * 1) + (amount2 * 1) + (amount3 * 1) + (amount4 * 1) + (amount5 * 1) + (amount6 * 1) + (amount7 * 1) + (amount8 * 1) + (amount9 * 1) + (amount10 * 1);
//total = document.autoSumForm.txtTotal.value = eval(parseInt(((sum * 1) / (1.07))*100)*.01);
total = document.autoSumForm.txtTotal.value = Math.round(((sum * 1) / (1.07))*100)/100;
//vat = document.autoSumForm.txtVat.value = eval(parseInt((total) * (7/100)*100)*.01);
vat = document.autoSumForm.txtVat.value = Math.round(((total) * (7/100))*100)/100
//document.form1.sum_dev.value =(parseFloat(document.form1.num_dev.value) * parseFloat(document.form1.price_dev.value)).toFixed(2);

} 
function stopCalc(){ 
clearInterval(interval); 
} 
</SCRIPT>

    
    <table width="718" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="7" class="detail">&nbsp;</td>
        <td width="126" class="detail">เรียน (ATTN.) :</td>
        <td width="120">
          <input name="txtCust" type="text" id="txtCust" value="" size="20">          </td>
        <td width="72">&nbsp;</td>
        <td width="58">&nbsp;</td>
        <td width="181" class="detail"><? echo "เลขที่ใบเสนอราคาล่าสุดคือ"; ?></td>
        <td width="154" class="detail"><span class="subject2">:
          <?
	require("connect.php");
	$sql = "select * from quotation order by id desc limit 1";
	$dbquery = mysql_db_query($db, $sql);
	$date_check=date("Y-m-d"); //หาวันที่ปัจจุบัน
	
	$num_rows = mysql_num_rows($dbquery); // เริ่มวนรอบแสดงข้อมูล
	
	$i=0;
while ($i < $num_rows)
{
$result = mysql_fetch_array($dbquery);
$id = $result[id];

echo "$id";
$i++;
}

?>
          </span></td>
      </tr>
      <tr>
        <td class="detail">&nbsp;</td>
        <td class="detail">ที่อยู่ (Address) :</td>
        <td colspan="3"><textarea name="txtAddress" cols="35" id="txtAddress"></textarea></td>
        <td class="detail">เลขที่ใบเสนอราคา(Qt.No.)</td>
        <td class="detail">: SGM2011/
          <input name="txtId" type="text" id="txtId" value="" size="4"></td>
      </tr>
      <tr>
        <td class="detail">&nbsp;</td>
        <td class="detail">โทรศัพท์ (Tel. No.)</td>
        <td><input name="txtTel" type="text" id="txtTel" value="" size="12"></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td><span class="detail">วันที่เสนอราคา(Qt.Date)</span></td>
        <td><span class="detail">:
          <? $date_a=date("Y/m/d");
  echo "$date_a";
  ?>
          </span></td>
      </tr>
      <tr>
        <td class="detail">&nbsp;</td>
        <td class="detail">โทรสาร (Fax. No.)</td>
        <td><input name="txtFax" type="text" id="txtFax" value="" size="12"></td>
        <td>&nbsp;</td>
        <td colspan="2"><span class="detail">เงื่อนไขการชำระเงิน(Payment Term)</span></td>
        <td><span class="detail">
          <select name= "pay" onChange="s_pay()"id="pay" >
            <option selected value="">เลือกการชำระเงิน</option>
            <option value="เงินสด">เงินสด</option>
            <option value="เครดิต7วัน">เครดิต7วัน</option>
            <option value="เครดิต15วัน">เครดิต15วัน</option>
            </select>
        </span></td>
      </tr>
      <tr>
        <td class="detail">&nbsp;</td>
        <td colspan="5" class="detail">บริษัทฯ มีความยินดีเสนอราคาพร้อมรายละเอียดของสินค้าและบริการ ดังรายการต่อไปนี้</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td class="detail">&nbsp;</td>
        <td colspan="5" class="detail">It's our pleasure to submit a quotation for your favorable consideration as follows :</td>
        <td>&nbsp;</td>
        </tr>
      <tr>
        <td height="264" colspan="7" valign="top"><table width="687" border="1" class="coll" cellpadding="0" cellspacing="0">
          <tr class="detail">
            <td width="55" align="center"><p>ลำดับ<br>
              NO.
              </p></td>
            <td width="288" align="center">รายการสินค้า/บริการ<br>
              Description</td>
            <td width="78" align="center">จำนวน<br>
              Quantity</td>
            <td width="82" align="center">ราคาต่อหน่วย<br>
              Unit Price</td>
            <td width="96" align="center">จำนวนเงินรวม<br>
              Amount</td>
            </tr>
          <tr>
            <td><span class="detail">
              <input name="txtNo1" type="text" id="txtNo1" value="" size="2">
              </span></td>
            <td><input name="txtDes1" type="text" id="txtDes1" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua1" type=text class="right" id="txtQua1" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
              </span></td>
            <td><span class="detail">
              <input name="txtUnit1" type=text class="right" id="txtUnit1" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
              </span></td>
            <td><span class="detail">
              <input name="txtAmount1" type="text" id="txtAmount1" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo2" type="text" id="txtNo2" value="" size="2"></td>
            <td><input name="txtDes2" type="text" id="txtDes2" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua2" type=text class="right" id="txtQua2" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit2" type=text class="right" id="txtUnit2" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount2" type="text" id="txtAmount2" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo3" type="text" id="txtNo3" value="" size="2"></td>
            <td><input name="txtDes3" type="text" id="txtDes3" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua3" type=text class="right" id="txtQua3" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit3" type=text class="right" id="txtUnit3" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount3" type="text" id="txtAmount3" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo4" type="text" id="txtNo4" value="" size="2"></td>
            <td><input name="txtDes4" type="text" id="txtDes4" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua4" type=text class="right" id="txtQua4" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit4" type=text class="right" id="txtUnit4" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount4" type="text" id="txtAmount4" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo5" type="text" id="txtNo5" value="" size="2"></td>
            <td><input name="txtDes5" type="text" id="txtDes5" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua5" type=text class="right" id="txtQua5" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit5" type=text class="right" id="txtUnit5" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount5" type="text" id="txtAmount5" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo6" type="text" id="txtNo6" value="" size="2"></td>
            <td><input name="txtDes6" type="text" id="txtDes6" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua6" type=text class="right" id="txtQua6" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit6" type=text class="right" id="txtUnit6" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount6" type="text" id="txtAmount6" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo7" type="text" id="txtNo7" value="" size="2"></td>
            <td><input name="txtDes7" type="text" id="txtDes7" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua7" type=text class="right" id="txtQua7" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit7" type=text class="right" id="txtUnit7" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount7" type="text" id="txtAmount7" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo8" type="text" id="txtNo8" value="" size="2"></td>
            <td><input name="txtDes8" type="text" id="txtDes8" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua8" type=text class="right" id="txtQua8" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit8" type=text class="right" id="txtUnit8" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount8" type="text" id="txtAmount8" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo9" type="text" id="txtNo9" value="" size="2"></td>
            <td><input name="txtDes9" type="text" id="txtDes9" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua9" type=text class="right" id="txtQua9" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit9" type=text class="right" id="txtUnit9" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount9" type="text" id="txtAmount9" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td><input name="txtNo10" type="text" id="txtNo10" value="" size="2"></td>
            <td><input name="txtDes10" type="text" id="txtDes10" value="" size="50"></td>
            <td><span class="detail">
              <input name="txtQua10" type=text class="right" id="txtQua10" onFocus="startCalc();" onBlur="stopCalc();" value="" size="4">
            </span></td>
            <td><span class="detail">
              <input name="txtUnit10" type=text class="right" id="txtUnit10" onFocus="startCalc();" onBlur="stopCalc();" value="" size="7">
            </span></td>
            <td><span class="detail">
              <input name="txtAmount10" type="text" id="txtAmount10" value="" size="8">
              </span></td>
            </tr>
          <tr>
            <td>&nbsp;</td>
            <td class="detail">จำนวนเงินเป็นตัวอักษร (Total amount in words.)</td>
            <td colspan="2" class="detail">มูลค่าสินค้า</td>
            <td><span class="detail">
              <input name="txtTotal" type=text class="right" id="txtTotal" size="10">
            </span></td>
          </tr>
          <tr>
            <td rowspan="2">&nbsp;</td>
            <td rowspan="2">&nbsp;</td>
            <td colspan="2" class="detail">ภาษีมูลค่าเพิ่ม / VAT 7%</td>
            <td><span class="detail">
              <input name="txtVat" type=text class="right" id="txtVat" size="10">
              </span></td>
          </tr>
          <tr>
            <td colspan="2" class="detail">จำนวนเงินรวมทั้งสิ้น</td>
            <td><span class="detail">
              <input name="txtSum" type=text class="right" id="txtSum" size="10">
            </span></td>
            </tr>
          <tr>
            <td>&nbsp;</td>
            <td colspan="3" class="detail">กำหนดยืนราคา : 
              <select name="dateprice" onChange="d_price()" id="dateprice">
                <option selected value="">0</option>
                <option value="7">7</option>
                <option value="15">15</option>
                </select>
              วัน&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ชื่อผู้ติดต่อ: 
              <input name="txtContact" type="text" id="txtContact" value="" size="20"></td>
            <td>&nbsp;</td>
            </tr>
          <tr>
            <td>&nbsp;</td>
            <td colspan="4" valign="middle" class="detail">หมายเหตุ/Remark :
              <br>              <textarea name="txtRemark" cols="95" rows="5" id="txtRemark"></textarea></td>
            </tr>
          </table></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td colspan="4" align="center"><input type="submit" name="btnSubmit" id="btnSubmit" value="สร้างใบเสนอราคา">
          <input type="reset" name="btnReset" id="btnReset" value="ล้างข้อมูล"></td>
        <td>&nbsp;</td>
      </tr>
    </table>
    <script language="javascript">
function check() {
if(document.autoSumForm.txtId.value=="") {
alert("กำหนดเลขที่ ใบเสนอราคา ด้วยครับ") ;
document.autoSumForm.txtId.focus() ;
return false ;
}
else if(document.autoSumForm.txtId.value.length <= 3){ 
alert('เลขที่ ใบเสนอราคา ต้องมี 4 ตัวขึ้นไปครับ'); 
document.autoSumForm.txtId.focus(); 
return false; 
} 
else if(document.autoSumForm.txtCust.value=="") {
alert("กรอก ชื่อลูกค้า ด้วยครับ") ;
document.autoSumForm.txtCust.focus() ;
return false ;
}
else if(document.autoSumForm.txtAddress.value=="") {
alert("กรอก ที่อยู่ลูกค้า ด้วยครับ") ;
document.autoSumForm.txtAddress.focus() ;
return false ;
}
else if(document.autoSumForm.txtTel.value=="") {
alert("กรอกเบอร์โทรศัพท์ ด้วยครับ") ;
document.autoSumForm.txtTel.focus() ;
return false ;
}
else if(document.autoSumForm.txtFax.value=="") {
alert("กรอกเบอร์ Fax ด้วยครับ") ;
document.autoSumForm.txtFax.focus() ;
return false ;
}
else if(document.autoSumForm.txtNo1.value=="") {
alert("ใบเสนอราคา อย่างน้อยต้องมี 1 รายการครับ") ;
document.autoSumForm.txtNo1.focus() ;
return false ;
}
else if(document.autoSumForm.txtDes1.value=="") {
alert("ใส่ รายการสินค้า/บริการ ด้วยครับ") ;
document.autoSumForm.txtDes1.focus() ;
return false ;
}
else if(document.autoSumForm.txtQua1.value=="") {
alert("ใส่ จำนวนสินค้า ด้วยครับ") ;
document.autoSumForm.txtQua1.focus() ;
return false ;
}
else if(document.autoSumForm.txtUnit1.value=="") {
alert("ใส่ ราคาต่อหน่วย ด้วยครับ") ;
document.autoSumForm.txtUnit1.focus() ;
return false ;
}
else if(document.autoSumForm.txtContact.value=="") {
alert("ใส่ ชื่อผู้ติดต่อ ด้วยครับ") ;
document.autoSumForm.txtContact.focus() ;
return false ;
}

else 
return true ;
}

</script>    </td>
  </tr>
</table>
</form>
</body>
</html>

Screenshot

Tag :

 

Date :
2011-03-28 09:42:03
By :
shinjangs
View :
8151
Reply :
3

[Update] จดหมายสั่งซื้อสินค้า (Placing an order by letter) | แบบ ฟอร์ม เสนอ ราคา – NATAVIGUIDES

นี่เป็นตัวอย่าง โดยไม่ต้องแนบใบสั่งซื้อมาด้วย แต่ในตัวจดหมายจะต้องระบุรายการสินค้าที่ต้องการไว้ด้วย ตัวอย่างเช่น

Dear ……………..,

Thank you for your letter of 20 March sending us patterns of cotton prints. We find both quality and prices satisfactory and pleased to give you an order for the following items :

   Quantity                         Pattern No.                  Prices

………………                       ………………..               ………………

………………                       …………………              ………………

we expect to find a good market for these cottons and hop to place further and larger orders with you in the near future.

Yours sincerely,

……………………..
(                       )

อีกตัวอย่างของจดหมายสั่งซื้อสินค้าดูได้ที่นีครับ คลิก…..

นอกจากนี้ยังมีคำขึ้นต้นหรือเริ่มต้นจดหมายอื่นๆ ที่สามารถใช้ได้เช่น

1. Thank you for your letter of (….วัน เดือน) and should be glad if you would accept our order for the following goods : (…ระบุรายการสินค้า….)

2.We can accept your offer on these terms, and are pleased to place an order for the following :

3. We are grateful for your letter of (…..วัน เดือน) and should be glade if you would accept our for the following goods :

สำหรับตัวอย่าง กรณีที่เราได้ติดต่อทางโทรศัพท์แล้วและพูดคุยตกลงกันเป็นที่เรียบร้อยแล้ว สามารถเขียนได้ดังนี้

Dear ……,

Referring to our conversation at your shop yesterday, please deliver to my office 100 standard desks, model B-2, at the agreed price of $50 US, as soon as possible.

Thank you for your prompt attention

Yours faithfully,

(Miss……………..)

Manager

แปลได้ว่า
อ้างถึงการสนทนาของเราที่ร้านของท่านเมื่อวานนี้ขอให้ท่านได้โปรดจัดส่งโต๊ะ รุ่น B-2 จำนวน 100 ตัว ตามราคาที่ตกลงกันไว้คือ ตัวละ 50 เหรียญสหรัฐฯ มายังสถานที่ทำงานของเราโดยเร็ว

อีกตัวอย่าง

Dear Sirs,

This is to confirm my telephone order, given to your secretary, for 50 standard desks. Please deliver to my office today at the above address.

Thank you for your prompt attention 

Yours faithfully,

(Miss……………..)

Manager

แปลได้ว่า

นี่เป็นการยืนยันการสั่งซื้อทางโทรศัพท์ของดิฉันกับเลขานุการของท่านสำหรับโต๊ะทำงาน 50 ตัว โปรดส่งมายังสำนักงานของดิฉันวันนี้ตามที่อยู่ข้างบนนั้น

ขอขอบคุณที่ช่วยจัดการให้

ขอแสดงความนับถือ
(                     )
กรรมการผู้จัดการ

นี่เป็นตัวอย่างโดยไม่ต้องแนบใบสั่งซื้อมาด้วย แต่ในตัวจดหมายจะต้องระบุรายการสินค้าที่ต้องการไว้ด้วย ตัวอย่างเช่น……………………..( )นอกจากนี้ยังมีคำขึ้นต้นหรือเริ่มต้นจดหมายอื่นๆ ที่สามารถใช้ได้เช่นสำหรับตัวอย่างกรณีที่เราได้ติดต่อทางโทรศัพท์แล้วและพูดคุยตกลงกันเป็นที่เรียบร้อยแล้ว สามารถเขียนได้ดังนี้แปลได้ว่าอ้างถึงการสนทนาของเราที่ร้านของท่านเมื่อวานนี้ขอให้ท่านได้โปรดจัดส่งโต๊ะ รุ่น B-2 จำนวน 100 ตัว ตามราคาที่ตกลงกันไว้คือ ตัวละ 50 เหรียญสหรัฐฯ มายังสถานที่ทำงานของเราโดยเร็วแปลได้ว่านี่เป็นการยืนยันการสั่งซื้อทางโทรศัพท์ของดิฉันกับเลขานุการของท่านสำหรับโต๊ะทำงาน 50 ตัว โปรดส่งมายังสำนักงานของดิฉันวันนี้ตามที่อยู่ข้างบนนั้นขอขอบคุณที่ช่วยจัดการให้ขอแสดงความนับถือ( )กรรมการผู้จัดการ


ทำฟอร์มใช้เอง ด้วย Excel ใบเสนอราคา ใบแจ้งหนี้


ใบเสนอราคา ใบสั่งซื้อ ใบเสร็จรับเงิน Invoice ฟอร์มต่างๆ ฟอร์มต่างๆ สามารถนำไปประยุกต์หรือเพิ่มเติมตามใจชอบ
ส่วนไฟล์อยู่ด้านล่างลิงค์ครับ
ฟอร์มเปล่า https://drive.google.com/open?id=1qz1FaDOe0ov6WZoTFXay9wIQ5P6LJ1pm

Microsoft Office Excel
ต้องขออภัยในการพูด ส.เสือ เป็นคนพูดไม่ชัด มาตั้งแต่ไหนแต่ไรแล้ว
และไม่มีการตัดต่อคลิป เป็นการทำสด คิดไปพูดไป พูดติดๆขัดๆ
อธิบายไม่ครอบคลุม สอบถามได้ครับ
และไฟล์ Excel สร้างขึ้นมาเอง ไม่ได้ไปก็อปปี้ ไฟล์งานใครมา

ข้อกำหนดในการโหลดไฟล์งาน
1. กดติดตามช่อง [ Subscribe ]
2. ถ่ายหรือแคปหน้าจอ
3. ทักข้อความผ่าน FanPage : https://www.facebook.com/StockPure746973282176714/
4. รับลิงค์โหลด หรือ คลิ้ก http://extrecey.com/XQZ
ขอบคุณครับ

นอกจากการดูบทความนี้แล้ว คุณยังสามารถดูข้อมูลที่เป็นประโยชน์อื่นๆ อีกมากมายที่เราให้ไว้ที่นี่: ดูความรู้เพิ่มเติมที่นี่

ทำฟอร์มใช้เอง ด้วย Excel  ใบเสนอราคา ใบแจ้งหนี้

VLOG EP289 \”ใบเสนอราคา\” อย่าทำอย่างหละหลวม


ใบเสนอราคาที่หละหลวม อาจทำให้ขาดทุนได้โดยไม่รู้ตัว!

ถ้าชอบสิ่งที่เรานำเสนอ กรุณาทำดังนี้
1. Share Video Blog ตอนนี้ออกไปให้มากที่สุด เพื่อให้เป็นประโยชน์แก่ส่วนรวม
2.Subscribe Youtube Channel \”โต ติงต๊อง\” สามารถ Search ใน Youtube ได้เลยย
3. Like Facebook Page ของเราเพื่อติดตาม Video Blog ที่จะออกทุก ๆ สองวันได้ที่ http://www.facebook.com/totingtongaudio
4. โทรหาเราได้ที่ 0858038791 หรือ เยี่ยมชมเว็บไซต์ของเราได้ที่ http://www.productionthai.com

ต้องการพัฒนาตัวเองในสายงานโปรดักชั่นไหมล่ะ? ถ้าใช่สามารถดูคอร์สสัมมนาของ “โต ติงต๊อง” ได้ที่ http://www.productionthai.com/คอร์สสัมมนา

VLOG EP289 \

Excel ที่ใช้ในการสมัครงาน ep3 สร้างใบเสนอราคาสินค้า | Microsoft Excel is a common application


ภาคปฏิบัติในการสัมภาษณ์งาน หนึ่งในโจทย์ MS Excel ที่ทาง Admin มักพบเจอ คือการสร้างใบเสนอราคาสินค้า โดยมีการใช้สูตร SUM / MAX / MIN การหาภาษีมูลค่าเพิ่ม 7% การคำนวณหาค่าสินค้า
excel ฟังก์ชั่นExcel Excelที่ใช้ในการสมัครงาน

Excel ที่ใช้ในการสมัครงาน มีดังนี้ สามารถคลิกศึกษาได้เลย
ep1 การคำนวณรายได้สุทธิ https://youtu.be/8xBZc4u5wNE
ep2 ฟังก์ชั่นวันเวลา Date Time https://youtu.be/DZIZkMY0F9Q
ep3 สร้างใบเสนอราคาสินค้า https://youtu.be/NvBVbr68RH4
EP4 แปลงจำนวนเงินให้เป็นตัวอักษร https://youtu.be/1w9ZFJdmHZ8

Excel ที่ใช้ในการสมัครงาน ep3 สร้างใบเสนอราคาสินค้า | Microsoft Excel is a common application

ขั้นตอนการทำ ใบเสนอราคา Quotation


บันทึกรายการสินค้าที่ต้องการเสนอราคาให้กับลูกค้า ส่งใบเสนอราคาผ่านอีเมล์แบบออนไลน์ให้ลูกค้าได้ทันที

ขั้นตอนการทำ ใบเสนอราคา Quotation

บ้านโมเดิร์นสวยชั้นครึ่งแนวลอฟท์ หลังคาซ้อนเล่นระดับ ชั้นล่างมีพื้นที่ปล่อยโล่งสำหรับเป็นโรงจอดรถ


Cr.www.naiban.com

บ้านโมเดิร์นสวยชั้นครึ่งแนวลอฟท์ หลังคาซ้อนเล่นระดับ ชั้นล่างมีพื้นที่ปล่อยโล่งสำหรับเป็นโรงจอดรถ

นอกจากการดูบทความนี้แล้ว คุณยังสามารถดูข้อมูลที่เป็นประโยชน์อื่นๆ อีกมากมายที่เราให้ไว้ที่นี่: ดูวิธีอื่นๆLEARN TO MAKE A WEBSITE

ขอบคุณมากสำหรับการดูหัวข้อโพสต์ แบบ ฟอร์ม เสนอ ราคา

Leave a Reply

Your email address will not be published. Required fields are marked *