order_edit.php 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. $page = $_GET['Page'] ?? '';
  6. $keys = urlencode($_GET['Keys'] ?? '');
  7. $hrefstr = "keys=$keys&Page=$page";
  8. // 验证并获取订单数据
  9. if (!empty($id) && is_numeric($id)) {
  10. // 获取订单基本信息
  11. $employee_id = $_SESSION['employee_id'];
  12. $sql = "SELECT o.*, c.cs_company, c.cs_code, cc.contact_name
  13. FROM orders o
  14. LEFT JOIN customer c ON o.customer_id = c.id
  15. LEFT JOIN customer_contact cc ON o.contact_id = cc.id
  16. WHERE o.id = $id AND o.employee_id = $employee_id";
  17. $result = mysqli_query($conn, $sql);
  18. if ($row = mysqli_fetch_assoc($result)) {
  19. $order = $row;
  20. } else {
  21. echo "<script>alert('订单不存在或您没有权限查看');history.back();</script>";
  22. exit;
  23. }
  24. // 获取订单项信息
  25. $sql = "SELECT oi.*, p.ProductName, pc.name as category_name
  26. FROM order_items oi
  27. LEFT JOIN products p ON oi.product_id = p.id
  28. LEFT JOIN product_categories pc ON p.category_id = pc.id
  29. WHERE oi.order_id = $id";
  30. $itemsResult = mysqli_query($conn, $sql);
  31. $orderItems = [];
  32. while ($itemRow = mysqli_fetch_assoc($itemsResult)) {
  33. $orderItems[] = $itemRow;
  34. }
  35. } else {
  36. echo "<script>alert('订单不存在!');history.back();</script>";
  37. exit;
  38. }
  39. ?>
  40. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  41. <html xmlns="http://www.w3.org/1999/xhtml">
  42. <head>
  43. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  44. <title>编辑订单</title>
  45. <link rel="stylesheet" href="css/common.css" type="text/css" />
  46. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  47. <script src="js/jquery-1.7.2.min.js"></script>
  48. <script src="js/js.js"></script>
  49. <style>
  50. body {
  51. margin: 0;
  52. padding: 20px;
  53. background: #fff;
  54. }
  55. #man_zone {
  56. margin-left: 0;
  57. }
  58. .product-row {
  59. position: relative;
  60. padding: 12px 15px;
  61. padding-right: 40px; /* Add right padding to make room for delete button */
  62. margin-bottom: 8px;
  63. border-radius: 4px;
  64. display: flex;
  65. align-items: center;
  66. flex-wrap: wrap;
  67. gap: 8px;
  68. background-color: #f9f9f9;
  69. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  70. }
  71. .delete-product {
  72. position: absolute;
  73. right: 10px;
  74. top: 50%;
  75. transform: translateY(-50%);
  76. color: #e74c3c;
  77. font-weight: bold;
  78. font-size: 18px;
  79. cursor: pointer;
  80. width: 24px;
  81. height: 24px;
  82. line-height: 24px;
  83. text-align: center;
  84. border-radius: 50%;
  85. z-index: 5;
  86. }
  87. .delete-product:hover {
  88. background-color: #e74c3c;
  89. color: white;
  90. }
  91. .product-info {
  92. flex: 2;
  93. min-width: 200px;
  94. }
  95. .product-spec {
  96. flex: 2;
  97. min-width: 200px;
  98. }
  99. .product-quantity {
  100. flex: 1;
  101. min-width: 80px;
  102. }
  103. .product-unit {
  104. flex: 0.5;
  105. min-width: 60px;
  106. }
  107. .product-price {
  108. flex: 1;
  109. min-width: 100px;
  110. }
  111. .product-total {
  112. flex: 1;
  113. min-width: 100px;
  114. font-weight: bold;
  115. }
  116. .product-row input[type="number"] {
  117. width: 80px;
  118. padding: 5px;
  119. border: 1px solid #ddd;
  120. border-radius: 4px;
  121. }
  122. .product-row select {
  123. width: 100%;
  124. padding: 5px;
  125. }
  126. .selected-product-info {
  127. font-weight: bold;
  128. margin-bottom: 3px;
  129. }
  130. .row-section {
  131. display: flex;
  132. flex-direction: column;
  133. }
  134. .row-section-label {
  135. font-size: 12px;
  136. color: #666;
  137. margin-bottom: 3px;
  138. }
  139. .row-section-label span {
  140. display: none; /* 在大屏幕上隐藏标签文本 */
  141. }
  142. .spec-info {
  143. margin-top: 2px;
  144. font-size: 12px;
  145. color: #666;
  146. }
  147. /* 在小屏幕上的响应式布局 */
  148. @media (max-width: 768px) {
  149. .product-row {
  150. flex-direction: column;
  151. align-items: flex-start;
  152. }
  153. .product-info, .product-spec, .product-quantity,
  154. .product-unit, .product-price, .product-total {
  155. width: 100%;
  156. min-width: 100%;
  157. margin-bottom: 8px;
  158. }
  159. .row-section-label span {
  160. display: inline; /* 在小屏幕上显示标签文本 */
  161. }
  162. .product-list-header {
  163. display: none !important; /* 在小屏幕上隐藏表头 */
  164. }
  165. }
  166. .add-product-btn {
  167. background-color: #4CAF50;
  168. color: white;
  169. padding: 10px 15px;
  170. border: none;
  171. border-radius: 4px;
  172. cursor: pointer;
  173. margin-bottom: 15px;
  174. font-size: 14px;
  175. display: flex;
  176. align-items: center;
  177. justify-content: center;
  178. gap: 8px;
  179. transition: background-color 0.2s;
  180. box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  181. }
  182. .add-product-btn:hover {
  183. background-color: #45a049;
  184. }
  185. .total-section {
  186. margin-top: 20px;
  187. padding: 10px;
  188. background-color: #eee;
  189. font-weight: bold;
  190. }
  191. #product-container {
  192. margin-bottom: 20px;
  193. }
  194. .productlist {
  195. display: none;
  196. position: absolute;
  197. background: white;
  198. border: 1px solid #ccc;
  199. max-height: 200px;
  200. overflow-y: auto;
  201. width: 100%;
  202. z-index: 1000;
  203. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  204. border-radius: 0 0 4px 4px;
  205. top: 100%;
  206. left: 0;
  207. }
  208. .productlist ul {
  209. list-style: none;
  210. padding: 0;
  211. margin: 0;
  212. }
  213. .productlist li {
  214. padding: 10px 12px;
  215. cursor: pointer;
  216. border-bottom: 1px solid #eee;
  217. transition: background-color 0.2s;
  218. }
  219. .productlist li:hover {
  220. background-color: #f0f0f0;
  221. }
  222. .productlist li:last-child {
  223. border-bottom: none;
  224. }
  225. .productinput {
  226. position: relative;
  227. }
  228. .productlist li .category-tag {
  229. color: #777;
  230. font-size: 12px;
  231. font-style: italic;
  232. margin-left: 5px;
  233. }
  234. /* Specification select styling */
  235. .spec-select {
  236. width: 100%;
  237. padding: 6px;
  238. margin-top: 5px;
  239. border: 1px solid #ccc;
  240. border-radius: 4px;
  241. }
  242. .spec-select:disabled {
  243. background-color: #f9f9f9;
  244. }
  245. .spec-price {
  246. font-weight: bold;
  247. color: #d9534f;
  248. }
  249. </style>
  250. </head>
  251. <body>
  252. <div id="man_zone">
  253. <form name="form1" id="form1" method="post" action="order_save.php?<?= $hrefstr ?>" onsubmit="return validateOrderForm()">
  254. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  255. <tbody>
  256. <tr>
  257. <th width="8%">订单编号</th>
  258. <td>
  259. <input type="text" id="order_code" name="order_code" value="<?= htmlspecialcharsFix($order['order_code']) ?>" class="txt1" />
  260. <input type="hidden" name="id" value="<?= $id ?>" />
  261. </td>
  262. </tr>
  263. <tr>
  264. <th width="8%">客户选择</th>
  265. <td>
  266. <div style="display: inline-block; width: 60%;" class="customerinput">
  267. <input type="text" class="customer-search fastsearch" placeholder="输入客户编码或名称搜索..." style="width: 100%;" value="<?= htmlspecialcharsFix(isset($order['cs_code']) && $order['cs_code'] ? $order['cs_code'] . ' - ' . $order['cs_company'] : $order['cs_company']) ?>">
  268. <div class="customerlist" style="display: none; position: absolute; background: white; border: 1px solid #ccc; max-height: 200px; overflow-y: auto; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2);">
  269. <ul style="list-style: none; padding: 0; margin: 0;"></ul>
  270. </div>
  271. <input type="hidden" name="customer_id" id="customer_id" value="<?= $order['customer_id'] ?>">
  272. <div class="selected-customer-info" style="margin-top: 5px; font-weight: bold;"></div>
  273. </div>
  274. </td>
  275. </tr>
  276. <tr>
  277. <th width="8%">订单日期</th>
  278. <td>
  279. <input type="date" id="order_date" name="order_date" value="<?= substr($order['order_date'], 0, 10) ?>" class="txt1" />
  280. </td>
  281. </tr>
  282. <tr>
  283. <th width="8%" valign="top">产品列表</th>
  284. <td>
  285. <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
  286. <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 8px;">
  287. <div style="flex: 2; min-width: 200px;">产品</div>
  288. <div style="flex: 1; min-width: 80px;">数量</div>
  289. <div style="flex: 0.5; min-width: 60px;">单位</div>
  290. <div style="flex: 1; min-width: 100px;">单价</div>
  291. <div style="flex: 1; min-width: 100px;">总价</div>
  292. <div style="flex: 2; min-width: 200px;">备注</div>
  293. </div>
  294. <div id="product-container">
  295. <?php foreach ($orderItems as $index => $item): ?>
  296. <div class="product-row" data-index="<?= $index ?>">
  297. <span class="delete-product">×</span>
  298. <div class="row-section product-info">
  299. <div class="row-section-label"><span>产品</span></div>
  300. <input type="hidden" name="items[<?= $index ?>][product_id]" class="product-id-input" value="<?= $item['product_id'] ?>">
  301. <div class="selected-product-info" style="cursor: pointer;" title="点击重新选择产品">
  302. <?= htmlspecialcharsFix($item['ProductName'] ?? '') ?>
  303. <?php if (!empty($item['category_name'])): ?>
  304. <span class="category-tag">(<?= htmlspecialcharsFix($item['category_name']) ?>)</span>
  305. <?php endif; ?>
  306. </div>
  307. </div>
  308. <div class="row-section product-quantity">
  309. <div class="row-section-label"><span>数量</span></div>
  310. <input type="number" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  311. </div>
  312. <div class="row-section product-unit">
  313. <div class="row-section-label"><span>单位</span></div>
  314. <input type="text" name="items[<?= $index ?>][unit]" value="<?= htmlspecialcharsFix($item['unit']) ?>" class="unit-input">
  315. </div>
  316. <div class="row-section product-price">
  317. <div class="row-section-label"><span>单价</span></div>
  318. <input type="number" step="0.01" name="items[<?= $index ?>][unit_price]" value="<?= $item['unit_price'] ?>" class="price-input" onchange="calculateItemTotal(this)">
  319. </div>
  320. <div class="row-section product-total">
  321. <div class="row-section-label"><span>总价</span></div>
  322. <span class="total-price-display"><?= number_format($item['total_price'], 2) ?></span>
  323. <input type="hidden" name="items[<?= $index ?>][total_price]" value="<?= $item['total_price'] ?>" class="total-price-input">
  324. </div>
  325. <div class="row-section product-notes" style="flex: 2; min-width: 200px;">
  326. <div class="row-section-label"><span>备注</span></div>
  327. <input type="text" name="items[<?= $index ?>][notes]" value="<?= htmlspecialcharsFix($item['notes']) ?>" style="width: 100%;">
  328. <!-- 保留隐藏的折扣字段以便后端兼容 -->
  329. <input type="hidden" name="items[<?= $index ?>][discount_amount]" value="0" class="discount-amount-input">
  330. <input type="hidden" name="items[<?= $index ?>][discount_percent]" value="0" class="discount-percent-input">
  331. </div>
  332. </div>
  333. <?php endforeach; ?>
  334. <!-- 产品行将通过搜索添加 -->
  335. <?php if (count($orderItems) == 0): ?>
  336. <div id="no-products-message" style="padding: 15px; text-align: center; color: #777; background-color: #f5f5f5; border: 1px dashed #ddd; border-radius: 4px; margin-bottom: 15px; display: block;">
  337. <i class="fa fa-info-circle"></i> 请点击"添加产品"按钮添加产品
  338. </div>
  339. <?php endif; ?>
  340. </div>
  341. <div class="total-section" style="margin-top: 20px; padding: 15px; background-color: #f5f5f5; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.1);">
  342. <div style="display: flex; justify-content: flex-end; align-items: center;">
  343. <label style="font-size: 16px; margin-right: 10px;">订单总额:</label>
  344. <span id="total-amount" style="font-size: 18px; font-weight: bold; color: #e74c3c;"><?= number_format($order['total_amount'], 2) ?></span>
  345. <input type="hidden" name="total_amount" id="total-amount-input" value="<?= $order['total_amount'] ?>">
  346. <input type="hidden" name="subtotal" id="subtotal-input" value="<?= $order['subtotal'] ?>">
  347. <input type="hidden" name="discount_amount" id="order-discount" value="0">
  348. </div>
  349. </div>
  350. </td>
  351. </tr>
  352. <tr>
  353. <th width="8%">订单备注</th>
  354. <td>
  355. <textarea name="notes" rows="3" style="width: 90%;"><?= htmlspecialcharsFix($order['notes']) ?></textarea>
  356. </td>
  357. </tr>
  358. <tr>
  359. <th></th>
  360. <td>
  361. <input type="submit" name="save" value="保存订单" class="btn1">
  362. <input type="button" value="返回" class="btn1" onClick="location.href='order.php?<?= $hrefstr ?>'" />
  363. </td>
  364. </tr>
  365. </tbody>
  366. </table>
  367. </form>
  368. <script>
  369. var productIndex = <?= count($orderItems) ?>;
  370. $(document).ready(function() {
  371. // 初始化计算
  372. calculateOrderTotal();
  373. // 初始化无产品消息
  374. updateNoProductsMessage();
  375. // 添加产品行按钮点击事件
  376. $('#add-product-btn').on('click', function() {
  377. addEmptyProductRow();
  378. updateNoProductsMessage();
  379. });
  380. // 删除产品行
  381. $(document).on('click', '.delete-product', function() {
  382. if ($('.product-row').length > 1) {
  383. $(this).closest('.product-row').remove();
  384. reindexProductRows();
  385. calculateOrderTotal();
  386. updateNoProductsMessage();
  387. } else {
  388. // 如果只剩最后一个产品行,则清空它而不是删除
  389. $(this).closest('.product-row').remove();
  390. updateNoProductsMessage();
  391. calculateOrderTotal(); // 确保在删除最后一个产品时也更新总额
  392. }
  393. });
  394. // 客户搜索功能
  395. var customerSearchTimeout = null;
  396. $(document).on('keyup', '.customer-search', function() {
  397. var $this = $(this);
  398. var searchTerm = $this.val().trim();
  399. var customerList = $('.customerlist');
  400. // 清除之前的超时
  401. clearTimeout(customerSearchTimeout);
  402. // 隐藏之前的结果
  403. customerList.hide();
  404. // 如果搜索词少于2个字符,不执行搜索
  405. if (searchTerm.length < 2) {
  406. return;
  407. }
  408. // 设置一个300毫秒的超时,以减少请求数量
  409. customerSearchTimeout = setTimeout(function() {
  410. $.ajax({
  411. url: 'get_customer_search.php',
  412. type: 'GET',
  413. data: {search: searchTerm},
  414. dataType: 'json',
  415. success: function(data) {
  416. var ul = customerList.find('ul');
  417. ul.empty();
  418. if (data && data.customers && data.customers.length > 0) {
  419. $.each(data.customers, function(i, customer) {
  420. var displayText = customer.cs_company;
  421. if (customer.cs_code) {
  422. displayText = customer.cs_code + ' - ' + displayText;
  423. }
  424. ul.append('<li data-id="' + customer.id + '" data-code="' + (customer.cs_code || '') + '">' +
  425. displayText + '</li>');
  426. });
  427. customerList.show();
  428. }
  429. },
  430. error: function() {
  431. console.log('搜索客户失败,请重试');
  432. }
  433. });
  434. }, 300);
  435. });
  436. // 点击选择客户
  437. $(document).on('click', '.customerlist li', function() {
  438. var $this = $(this);
  439. var customerId = $this.data('id');
  440. var customerName = $this.text();
  441. var customerCode = $this.data('code') || '';
  442. // 设置选中的客户ID和名称
  443. $('#customer_id').val(customerId);
  444. $('.customer-search').val(customerName);
  445. $('.selected-customer-info').text(customerName);
  446. $('.customerlist').hide();
  447. });
  448. // 单一产品搜索功能 - 使用防抖动以减少请求数量
  449. var productSearchTimeout = null;
  450. $(document).on('keyup', '#product-search-single', function() {
  451. var $this = $(this);
  452. var searchTerm = $this.val().trim();
  453. var productList = $('#product-list-single');
  454. // 清除之前的超时
  455. clearTimeout(productSearchTimeout);
  456. // 隐藏之前的结果
  457. productList.hide();
  458. // 如果搜索词少于2个字符,不执行搜索
  459. if (searchTerm.length < 2) {
  460. return;
  461. }
  462. // 设置一个300毫秒的超时,以减少请求数量
  463. productSearchTimeout = setTimeout(function() {
  464. $.ajax({
  465. url: 'get_product_info.php',
  466. type: 'GET',
  467. data: {search: searchTerm},
  468. dataType: 'json',
  469. success: function(data) {
  470. var ul = productList.find('ul');
  471. ul.empty();
  472. if (data && data.products && data.products.length > 0) {
  473. $.each(data.products, function(i, product) {
  474. ul.append('<li data-id="' + product.id + '">' +
  475. product.ProductName +
  476. (product.category_name ? ' <span class="category-tag">(' + product.category_name + ')</span>' : '') +
  477. '</li>');
  478. });
  479. productList.show();
  480. }
  481. },
  482. error: function() {
  483. console.log('搜索产品失败,请重试');
  484. }
  485. });
  486. }, 300);
  487. });
  488. // 点击选择产品 - 从单一搜索框
  489. $(document).on('click', '#product-list-single li', function() {
  490. var $this = $(this);
  491. var productId = $this.data('id');
  492. var productName = $this.text(); // 这会包含分类名,需要清理
  493. var categoryTag = $this.find('.category-tag').text();
  494. // 清理产品名称,移除分类信息
  495. if (categoryTag) {
  496. productName = productName.replace(categoryTag, '').trim();
  497. }
  498. // 检查产品是否已经添加
  499. var isDuplicate = false;
  500. $('.product-id-input').each(function() {
  501. if ($(this).val() == productId) {
  502. isDuplicate = true;
  503. return false; // 跳出循环
  504. }
  505. });
  506. if (isDuplicate) {
  507. alert('该产品已添加,不能重复添加');
  508. $('#product-search-single').val('');
  509. $('#product-list-single').hide();
  510. return;
  511. }
  512. // 添加产品行
  513. addProductRowWithProduct(productId, productName, categoryTag);
  514. // 清空搜索框并隐藏结果
  515. $('#product-search-single').val('');
  516. $('#product-list-single').hide();
  517. });
  518. // 点击其他地方隐藏下拉列表
  519. $(document).on('click', function(e) {
  520. if (!$(e.target).closest('#product-search-single').length) {
  521. $('#product-list-single').hide();
  522. }
  523. if (!$(e.target).closest('.customerinput').length) {
  524. $('.customerlist').hide();
  525. }
  526. });
  527. });
  528. function addEmptyProductRow() {
  529. var html = `
  530. <div class="product-row" data-index="${productIndex}">
  531. <span class="delete-product">×</span>
  532. <div class="row-section product-info">
  533. <div class="row-section-label"><span>产品</span></div>
  534. <input type="hidden" name="items[${productIndex}][product_id]" class="product-id-input" value="">
  535. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px;">
  536. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  537. <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
  538. </div>
  539. <div class="row-section product-quantity">
  540. <div class="row-section-label"><span>数量</span></div>
  541. <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  542. </div>
  543. <div class="row-section product-unit">
  544. <div class="row-section-label"><span>单位</span></div>
  545. <input type="text" name="items[${productIndex}][unit]" value="" class="unit-input">
  546. </div>
  547. <div class="row-section product-price">
  548. <div class="row-section-label"><span>单价</span></div>
  549. <input type="number" step="0.01" name="items[${productIndex}][unit_price]" value="" class="price-input" placeholder="输入单价" onchange="calculateItemTotal(this)">
  550. </div>
  551. <div class="row-section product-total">
  552. <div class="row-section-label"><span>总价</span></div>
  553. <span class="total-price-display">0.00</span>
  554. <input type="hidden" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input">
  555. </div>
  556. <div class="row-section product-notes" style="flex: 2; min-width: 200px;">
  557. <div class="row-section-label"><span>备注</span></div>
  558. <input type="text" name="items[${productIndex}][notes]" value="" style="width: 100%;">
  559. <!-- 保留隐藏的折扣字段以便后端兼容 -->
  560. <input type="hidden" name="items[${productIndex}][discount_amount]" value="0" class="discount-amount-input">
  561. <input type="hidden" name="items[${productIndex}][discount_percent]" value="0" class="discount-percent-input">
  562. </div>
  563. </div>
  564. `;
  565. $('#product-container').append(html);
  566. productIndex++;
  567. return productIndex - 1; // 返回新添加行的索引
  568. }
  569. function addProductRowWithProduct(productId, productName, categoryTag) {
  570. // 添加空行
  571. var rowIndex = addEmptyProductRow();
  572. var row = $('.product-row[data-index="' + rowIndex + '"]');
  573. // 设置产品ID和名称
  574. row.find('.product-id-input').val(productId);
  575. // 显示包含分类的完整产品信息
  576. var displayName = productName;
  577. if (categoryTag) {
  578. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  579. }
  580. row.find('.selected-product-info').html(displayName);
  581. // 获取产品信息
  582. getProductInfo(productId, row);
  583. // 更新无产品消息显示
  584. updateNoProductsMessage();
  585. }
  586. function reindexProductRows() {
  587. $('.product-row').each(function(index) {
  588. $(this).attr('data-index', index);
  589. $(this).find('select, input').each(function() {
  590. var name = $(this).attr('name');
  591. if (name) {
  592. name = name.replace(/items\[\d+\]/, 'items[' + index + ']');
  593. $(this).attr('name', name);
  594. }
  595. });
  596. });
  597. productIndex = $('.product-row').length;
  598. }
  599. function getProductInfo(productId, row) {
  600. if (!productId) return;
  601. $.ajax({
  602. url: 'get_product_info.php',
  603. type: 'GET',
  604. data: {id: productId},
  605. dataType: 'json',
  606. success: function(data) {
  607. if (data) {
  608. row.find('.unit-input').val(data.unit);
  609. // 只有当数据库中有价格信息时才设置价格
  610. if (data.price && data.price !== '0' && data.price !== '0.00') {
  611. //默认不设置单价
  612. //row.find('.price-input').val(data.price);
  613. }
  614. calculateItemTotal(row.find('.price-input')[0]);
  615. }
  616. }
  617. });
  618. }
  619. function calculateItemTotal(element) {
  620. var row = $(element).closest('.product-row');
  621. var quantity = parseInt(row.find('.quantity-input').val()) || 0;
  622. var priceInput = row.find('.price-input');
  623. var priceValue = priceInput.val().trim();
  624. var price = (priceValue === '') ? 0 : (parseFloat(priceValue) || 0);
  625. var total = quantity * price;
  626. if (total < 0) total = 0;
  627. // 更新显示元素和隐藏输入框
  628. row.find('.total-price-display').text(total.toFixed(2));
  629. row.find('.total-price-input').val(total.toFixed(2));
  630. calculateOrderTotal();
  631. }
  632. function calculateOrderTotal() {
  633. var total = 0;
  634. $('.total-price-input').each(function() {
  635. total += parseFloat($(this).val()) || 0;
  636. });
  637. // 更新总额和隐藏的小计字段
  638. $('#total-amount').text(total.toFixed(2));
  639. $('#total-amount-input').val(total.toFixed(2));
  640. $('#subtotal-input').val(total.toFixed(2)); // 为兼容性保留
  641. }
  642. function validateOrderForm() {
  643. var orderCode = $('#order_code').val();
  644. var customerId = $('#customer_id').val();
  645. var customerName = $('.customer-search').val();
  646. var hasProducts = false;
  647. var allPricesValid = true;
  648. var firstEmptyPriceField = null;
  649. $('.product-id-input').each(function() {
  650. if ($(this).val()) {
  651. hasProducts = true;
  652. // 检查该产品的单价是否已填写
  653. var row = $(this).closest('.product-row');
  654. var priceInput = row.find('.price-input');
  655. var priceValue = priceInput.val().trim();
  656. if (priceValue === '' || isNaN(parseFloat(priceValue))) {
  657. allPricesValid = false;
  658. if (!firstEmptyPriceField) {
  659. firstEmptyPriceField = priceInput;
  660. }
  661. }
  662. }
  663. });
  664. if (!orderCode) {
  665. alert('订单编号不能为空');
  666. $('#order_code').focus();
  667. return false;
  668. }
  669. if (!customerId || customerId <= 0) {
  670. alert('请选择客户');
  671. $('.customer-search').focus();
  672. return false;
  673. }
  674. if (!customerName) {
  675. alert('客户名称不能为空');
  676. $('.customer-search').focus();
  677. return false;
  678. }
  679. if (!hasProducts) {
  680. alert('请至少添加一个产品');
  681. $('#product-search-single').focus();
  682. return false;
  683. }
  684. if (!allPricesValid) {
  685. alert('请为所有产品输入有效的单价');
  686. if (firstEmptyPriceField) {
  687. firstEmptyPriceField.focus();
  688. }
  689. return false;
  690. }
  691. return true;
  692. }
  693. function updateNoProductsMessage() {
  694. if ($('.product-row').length > 0) {
  695. $('#no-products-message').hide();
  696. } else {
  697. $('#no-products-message').show();
  698. }
  699. }
  700. </script>
  701. </div>
  702. </body>
  703. </html>