Browse Source

1.欄位檢查

2.新增圖片
gary
jrbin 1 year ago
parent
commit
92aaf19937
  1. BIN
      wms/mkt/assets/img/image001.png
  2. BIN
      wms/mkt/assets/img/stamp.png
  3. 6
      wms/mkt/pricereview_repair-create.php

BIN
wms/mkt/assets/img/image001.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
wms/mkt/assets/img/stamp.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

6
wms/mkt/pricereview_repair-create.php

@ -301,6 +301,10 @@ $(function(){
var itemMemoArr = []; var itemMemoArr = [];
$("input[name=item_memo]").each(function(){ if ($(this).val() != '') itemMemoArr.push($(this).val()+"@@"); }) $("input[name=item_memo]").each(function(){ if ($(this).val() != '') itemMemoArr.push($(this).val()+"@@"); })
$('#item_memo_all').val(itemMemoArr); $('#item_memo_all').val(itemMemoArr);
if ($("#sales_tax").val() == "" || $("#total_price").val() == "") {
alert("請新增報價項目!");
return false;
}
}); });
}); });
</script> </script>
@ -339,7 +343,7 @@ if($_SERVER["REQUEST_METHOD"] == "POST"){
<form class="form-inline" method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" enctype="multipart/form-data"> <form class="form-inline" method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" enctype="multipart/form-data">
<div> <div>
<label for="contractno">客戶合約號</label> <label for="contractno">客戶合約號</label>
<input type="text" name="contractno" id="contractno"> <input type="text" name="contractno" id="contractno" required>
</div> </div>
<div> <div>
<br> <br>

Loading…
Cancel
Save