order_edit.php 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051
  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. ps.id as product_spec_id, ps.spec_name, ps.spec_value,
  27. oi.specification_id /* 显式获取数据库中的specification_id */
  28. FROM order_items oi
  29. LEFT JOIN products p ON oi.product_id = p.id
  30. LEFT JOIN product_categories pc ON p.category_id = pc.id
  31. LEFT JOIN product_specifications ps ON oi.specification_id = ps.id
  32. WHERE oi.order_id = $id";
  33. $itemsResult = mysqli_query($conn, $sql);
  34. $orderItems = [];
  35. while ($itemRow = mysqli_fetch_assoc($itemsResult)) {
  36. // 调试输出
  37. error_log("订单项数据: " . print_r($itemRow, true));
  38. $orderItems[] = $itemRow;
  39. }
  40. } else {
  41. echo "<script>alert('订单不存在!');history.back();</script>";
  42. exit;
  43. }
  44. ?>
  45. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  46. <html xmlns="http://www.w3.org/1999/xhtml">
  47. <head>
  48. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  49. <title>编辑订单</title>
  50. <link rel="stylesheet" href="css/common.css" type="text/css" />
  51. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  52. <script src="js/jquery-1.7.2.min.js"></script>
  53. <script src="js/js.js"></script>
  54. <style>
  55. body {
  56. margin: 0;
  57. padding: 20px;
  58. background: #fff;
  59. }
  60. #man_zone {
  61. margin-left: 0;
  62. }
  63. .product-row {
  64. position: relative;
  65. padding: 12px 15px;
  66. padding-right: 40px; /* Add right padding to make room for delete button */
  67. margin-bottom: 8px;
  68. border-radius: 4px;
  69. display: flex;
  70. align-items: center;
  71. flex-wrap: wrap;
  72. gap: 20px; /* 增加间距 */
  73. background-color: #f9f9f9;
  74. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  75. }
  76. .delete-product {
  77. position: absolute;
  78. right: 10px;
  79. top: 50%;
  80. transform: translateY(-50%);
  81. color: #e74c3c;
  82. font-weight: bold;
  83. font-size: 18px;
  84. cursor: pointer;
  85. width: 24px;
  86. height: 24px;
  87. line-height: 24px;
  88. text-align: center;
  89. border-radius: 50%;
  90. z-index: 5;
  91. }
  92. .delete-product:hover {
  93. background-color: #e74c3c;
  94. color: white;
  95. }
  96. .product-info {
  97. flex: 3;
  98. min-width: 200px;
  99. }
  100. .product-spec {
  101. flex: 2;
  102. min-width: 200px;
  103. }
  104. .product-quantity {
  105. flex: 1;
  106. min-width: 80px;
  107. }
  108. .product-unit {
  109. flex: 0.8;
  110. min-width: 60px;
  111. }
  112. .product-price {
  113. flex: 1;
  114. min-width: 100px;
  115. }
  116. .product-total {
  117. flex: 1.2;
  118. min-width: 100px;
  119. font-weight: bold;
  120. }
  121. .product-row input[type="number"] {
  122. width: 90%;
  123. padding: 5px;
  124. border: 1px solid #ddd;
  125. border-radius: 4px;
  126. }
  127. .product-row select {
  128. width: 100%;
  129. padding: 5px;
  130. }
  131. .selected-product-info {
  132. font-weight: bold;
  133. margin-bottom: 3px;
  134. }
  135. .row-section {
  136. display: flex;
  137. flex-direction: column;
  138. }
  139. .row-section-label {
  140. font-size: 12px;
  141. color: #666;
  142. margin-bottom: 3px;
  143. }
  144. .row-section-label span {
  145. display: none; /* 在大屏幕上隐藏标签文本 */
  146. }
  147. .spec-info {
  148. margin-top: 2px;
  149. font-size: 12px;
  150. color: #666;
  151. }
  152. /* 在小屏幕上的响应式布局 */
  153. @media (max-width: 768px) {
  154. .product-row {
  155. flex-direction: column;
  156. align-items: flex-start;
  157. }
  158. .product-info, .product-spec, .product-quantity,
  159. .product-unit, .product-price, .product-total {
  160. width: 100%;
  161. min-width: 100%;
  162. margin-bottom: 8px;
  163. }
  164. .row-section-label span {
  165. display: inline; /* 在小屏幕上显示标签文本 */
  166. }
  167. .product-list-header {
  168. display: none !important; /* 在小屏幕上隐藏表头 */
  169. }
  170. }
  171. .add-product-btn {
  172. background-color: #4CAF50;
  173. color: white;
  174. padding: 10px 15px;
  175. border: none;
  176. border-radius: 4px;
  177. cursor: pointer;
  178. margin-bottom: 15px;
  179. font-size: 14px;
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. gap: 8px;
  184. transition: background-color 0.2s;
  185. box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  186. }
  187. .add-product-btn:hover {
  188. background-color: #45a049;
  189. }
  190. .total-section {
  191. margin-top: 20px;
  192. padding: 10px;
  193. background-color: #eee;
  194. font-weight: bold;
  195. }
  196. #product-container {
  197. margin-bottom: 20px;
  198. }
  199. .productlist {
  200. display: none;
  201. position: absolute;
  202. background: white;
  203. border: 1px solid #ccc;
  204. max-height: 200px;
  205. overflow-y: auto;
  206. width: 100%;
  207. z-index: 1000;
  208. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  209. border-radius: 0 0 4px 4px;
  210. top: 100%;
  211. left: 0;
  212. }
  213. .productlist ul {
  214. list-style: none;
  215. padding: 0;
  216. margin: 0;
  217. }
  218. .productlist li {
  219. padding: 10px 12px;
  220. cursor: pointer;
  221. border-bottom: 1px solid #eee;
  222. transition: background-color 0.2s;
  223. }
  224. .productlist li:hover {
  225. background-color: #f0f0f0;
  226. }
  227. .productlist li:last-child {
  228. border-bottom: none;
  229. }
  230. .productinput {
  231. position: relative;
  232. }
  233. .productlist li .category-tag {
  234. color: #777;
  235. font-size: 12px;
  236. font-style: italic;
  237. margin-left: 5px;
  238. }
  239. /* Specification select styling */
  240. .spec-select {
  241. width: 100%;
  242. padding: 6px;
  243. margin-top: 5px;
  244. border: 1px solid #ccc;
  245. border-radius: 4px;
  246. }
  247. .spec-select:disabled {
  248. background-color: #f9f9f9;
  249. }
  250. .spec-price {
  251. font-weight: bold;
  252. color: #d9534f;
  253. }
  254. /* 客户选择样式 */
  255. .customer-search-container {
  256. display: flex;
  257. align-items: center;
  258. margin-bottom: 10px;
  259. position: relative;
  260. width: 60%;
  261. }
  262. .customer-dropdown {
  263. display: none;
  264. position: absolute;
  265. background: white;
  266. border: 1px solid #ccc;
  267. max-height: 200px;
  268. overflow-y: auto;
  269. width: 100%;
  270. z-index: 1000;
  271. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  272. border-radius: 0 0 4px 4px;
  273. top: 100%;
  274. left: 0;
  275. }
  276. .customer-item {
  277. padding: 10px 12px;
  278. cursor: pointer;
  279. border-bottom: 1px solid #eee;
  280. transition: background-color 0.2s;
  281. }
  282. .customer-item:hover {
  283. background-color: #f0f0f0;
  284. }
  285. .customer-item:last-child {
  286. border-bottom: none;
  287. }
  288. .selected-customer-info {
  289. font-weight: bold;
  290. padding: 8px 10px;
  291. border: 1px solid #ddd;
  292. background-color: #f9f9f9;
  293. display: none;
  294. width: 100%;
  295. box-sizing: border-box;
  296. word-break: break-all;
  297. overflow: hidden;
  298. text-overflow: ellipsis;
  299. white-space: normal;
  300. min-height: 38px;
  301. cursor: pointer;
  302. }
  303. .selected-customer-info:hover {
  304. background-color: #f0f0f0;
  305. }
  306. .customer-clear-btn {
  307. margin-left: 5px;
  308. color: #e74c3c;
  309. font-weight: bold;
  310. cursor: pointer;
  311. float: right;
  312. }
  313. .customer-clear-btn:hover {
  314. color: #c0392b;
  315. }
  316. .product-row .total-price-input {
  317. width: 90%;
  318. }
  319. </style>
  320. </head>
  321. <body>
  322. <div id="man_zone">
  323. <form name="form1" id="form1" method="post" action="order_save.php?<?= $hrefstr ?>" onsubmit="return validateOrderForm()">
  324. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  325. <tbody>
  326. <tr>
  327. <th width="8%">销售订单号</th>
  328. <td>
  329. <input type="text" id="order_code" name="order_code" value="<?= htmlspecialcharsFix($order['order_code']) ?>" class="txt1" />
  330. <input type="hidden" name="id" value="<?= $id ?>" />
  331. </td>
  332. </tr>
  333. <tr>
  334. <th width="8%">客户选择</th>
  335. <td>
  336. <div class="customer-search-container">
  337. <input type="text" id="customer_search" class="customer-search txt1" data-type="customer" placeholder="输入客户编码或名称搜索..." style="width: 100%;" value="<?= htmlspecialcharsFix(isset($order['cs_code']) && $order['cs_code'] ? $order['cs_code'] . ' - ' . $order['cs_company'] : $order['cs_company']) ?>">
  338. <div id="customer_dropdown" class="customer-dropdown"></div>
  339. <div id="customer_selected" class="selected-customer-info" style="display: block;" title="<?= htmlspecialcharsFix(isset($order['cs_code']) && $order['cs_code'] ? $order['cs_code'] . ' - ' . $order['cs_company'] : $order['cs_company']) ?>">
  340. <?= htmlspecialcharsFix(isset($order['cs_code']) && $order['cs_code'] ? $order['cs_code'] . ' - ' . $order['cs_company'] : $order['cs_company']) ?>
  341. <span class="customer-clear-btn" data-type="customer">X</span>
  342. </div>
  343. <input type="hidden" name="customer_id" id="customer_id" value="<?= $order['customer_id'] ?>">
  344. </div>
  345. </td>
  346. </tr>
  347. <tr>
  348. <th width="8%">出货日期</th>
  349. <td>
  350. <input type="date" id="order_date" name="order_date" value="<?= substr($order['order_date'], 0, 10) ?>" class="txt1" />
  351. </td>
  352. </tr>
  353. <tr>
  354. <th width="8%" valign="top">产品列表</th>
  355. <td>
  356. <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
  357. <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: 20px;">
  358. <div style="flex: 3; min-width: 200px;">产品</div>
  359. <div style="flex: 1; min-width: 80px;">数量</div>
  360. <div style="flex: 0.8; min-width: 60px;">单位</div>
  361. <div style="flex: 1.2; min-width: 100px;">总价</div>
  362. </div>
  363. <div id="product-container">
  364. <?php foreach ($orderItems as $index => $item): ?>
  365. <div class="product-row" data-index="<?= $index ?>">
  366. <span class="delete-product">×</span>
  367. <div class="row-section product-info">
  368. <div class="row-section-label"><span>产品</span></div>
  369. <input type="hidden" name="items[<?= $index ?>][product_id]" class="product-id-input" value="<?= $item['product_id'] ?>">
  370. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px; display: none;">
  371. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  372. <div class="selected-product-info" style="cursor: pointer;" title="点击重新选择产品">
  373. <?= htmlspecialcharsFix($item['ProductName'] ?? '') ?>
  374. <?php if (!empty($item['category_name'])): ?>
  375. <span class="category-tag">(<?= htmlspecialcharsFix($item['category_name']) ?>)</span>
  376. <?php endif; ?>
  377. </div>
  378. </div>
  379. <div class="row-section product-quantity">
  380. <div class="row-section-label"><span>数量</span></div>
  381. <input type="number" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  382. </div>
  383. <div class="row-section product-unit">
  384. <div class="row-section-label"><span>单位</span></div>
  385. <span class="unit-label"><?= htmlspecialcharsFix($item['unit']) ?></span>
  386. <input type="hidden" name="items[<?= $index ?>][unit]" value="<?= htmlspecialcharsFix($item['unit']) ?>" class="unit-input">
  387. </div>
  388. <div class="row-section product-total">
  389. <div class="row-section-label"><span>总价</span></div>
  390. <input type="number" step="0.01" name="items[<?= $index ?>][total_price]" value="<?= $item['total_price'] ?>" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
  391. </div>
  392. <!-- 保留隐藏的折扣字段以便后端兼容 -->
  393. <input type="hidden" name="items[<?= $index ?>][discount_amount]" value="0" class="discount-amount-input">
  394. <input type="hidden" name="items[<?= $index ?>][discount_percent]" value="0" class="discount-percent-input">
  395. <input type="hidden" name="items[<?= $index ?>][notes]" value="<?= htmlspecialcharsFix($item['notes'] ?? '') ?>">
  396. </div>
  397. <?php endforeach; ?>
  398. <!-- 产品行将通过搜索添加 -->
  399. <?php if (count($orderItems) == 0): ?>
  400. <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;">
  401. <i class="fa fa-info-circle"></i> 请点击"添加产品"按钮添加产品
  402. </div>
  403. <?php endif; ?>
  404. </div>
  405. <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);">
  406. <div style="display: flex; justify-content: flex-end; align-items: center;">
  407. <label style="font-size: 16px; margin-right: 10px;">订单总额:</label>
  408. <span id="total-amount" style="font-size: 18px; font-weight: bold; color: #e74c3c;"><?= number_format($order['total_amount'], 2) ?></span>
  409. <input type="hidden" name="total_amount" id="total-amount-input" value="<?= $order['total_amount'] ?>">
  410. <input type="hidden" name="subtotal" id="subtotal-input" value="<?= $order['subtotal'] ?>">
  411. <input type="hidden" name="discount_amount" id="order-discount" value="0">
  412. </div>
  413. </div>
  414. </td>
  415. </tr>
  416. <tr>
  417. <th width="8%">订单备注</th>
  418. <td>
  419. <textarea name="notes" rows="3" style="width: 90%;"><?= htmlspecialcharsFix($order['notes']) ?></textarea>
  420. </td>
  421. </tr>
  422. <tr>
  423. <th></th>
  424. <td>
  425. <input type="submit" name="save" value="保存订单" class="btn1">
  426. <input type="button" value="返回" class="btn1" onClick="location.href='order.php?<?= $hrefstr ?>'" />
  427. </td>
  428. </tr>
  429. </tbody>
  430. </table>
  431. </form>
  432. <script>
  433. var productIndex = <?= count($orderItems) ?>;
  434. $(document).ready(function() {
  435. // 初始化计算
  436. calculateOrderTotal();
  437. // 初始化无产品消息
  438. updateNoProductsMessage();
  439. // 初始化现有产品的规格选择
  440. $('.product-row').each(function() {
  441. var row = $(this);
  442. var productId = row.find('.product-id-input').val();
  443. var specId = row.find('.spec-id-input').val();
  444. console.log("初始化行 - 行索引:", row.data('index'), "产品ID:", productId, "规格ID:", specId);
  445. if (productId) {
  446. // 加载产品规格
  447. getProductSpecifications(productId, row);
  448. }
  449. });
  450. // 隐藏搜索框,因为已经选择了客户
  451. $('#customer_search').hide();
  452. // 客户搜索功能
  453. var customerSearchTimeout = null;
  454. var customerIsComposing = false;
  455. // 监听输入法组合事件
  456. $(document).on('compositionstart', '.customer-search', function() {
  457. customerIsComposing = true;
  458. });
  459. $(document).on('compositionend', '.customer-search', function() {
  460. customerIsComposing = false;
  461. $(this).trigger('input'); // 手动触发一次input事件
  462. });
  463. // 客户搜索输入处理
  464. $(document).on('input', '#customer_search', function() {
  465. // 如果是输入法正在组合中文,不处理
  466. if (customerIsComposing) return;
  467. var $this = $(this);
  468. var searchTerm = $this.val().trim();
  469. var customerDropdown = $('#customer_dropdown');
  470. // 清除之前的超时
  471. clearTimeout(customerSearchTimeout);
  472. // 隐藏之前的结果
  473. customerDropdown.hide().empty();
  474. // 清除之前的选择
  475. $('#customer_id').val('0');
  476. $('#customer_selected').hide();
  477. // 如果搜索词少于1个字符,不执行搜索
  478. if (searchTerm.length < 1) {
  479. return;
  480. }
  481. // 设置一个300毫秒的超时,以减少请求数量
  482. customerSearchTimeout = setTimeout(function() {
  483. $.ajax({
  484. url: 'get_customer_search.php',
  485. type: 'GET',
  486. data: {search: searchTerm},
  487. dataType: 'json',
  488. success: function(data) {
  489. customerDropdown.empty();
  490. if (data && data.customers && data.customers.length > 0) {
  491. $.each(data.customers, function(i, customer) {
  492. var displayText = customer.cs_company;
  493. if (customer.cs_code) {
  494. displayText = customer.cs_code + ' - ' + displayText;
  495. }
  496. var item = $('<div class="customer-item"></div>')
  497. .attr('data-id', customer.id)
  498. .attr('data-company', customer.cs_company)
  499. .attr('data-display', displayText)
  500. .text(displayText);
  501. customerDropdown.append(item);
  502. });
  503. customerDropdown.show();
  504. }
  505. },
  506. error: function() {
  507. console.log('搜索客户失败,请重试');
  508. }
  509. });
  510. }, 300);
  511. });
  512. // 点击选择客户
  513. $(document).on('click', '.customer-item', function() {
  514. var $this = $(this);
  515. var customerId = $this.data('id');
  516. var customerName = $this.data('company');
  517. var displayText = $this.data('display');
  518. // 设置选中的客户ID和名称
  519. $('#customer_id').val(customerId);
  520. $('#customer_search').hide();
  521. $('#customer_selected').text(displayText).append('<span class="customer-clear-btn" data-type="customer">X</span>').show();
  522. // 添加标题属性,便于查看完整信息
  523. $('#customer_selected').attr('title', displayText);
  524. // 隐藏下拉菜单
  525. $('#customer_dropdown').hide();
  526. });
  527. // 点击X按钮清除选择的客户
  528. $(document).on('click', '.customer-clear-btn', function(e) {
  529. e.stopPropagation();
  530. // 显示搜索框,隐藏已选信息
  531. $('#customer_search').val('').show();
  532. $('#customer_selected').hide();
  533. // 清空客户ID
  534. $('#customer_id').val('0');
  535. });
  536. // 点击其他地方隐藏下拉列表
  537. $(document).on('click', function(e) {
  538. if (!$(e.target).closest('.customer-search-container').length) {
  539. $('#customer_dropdown').hide();
  540. }
  541. });
  542. // 添加产品行按钮点击事件
  543. $('#add-product-btn').on('click', function() {
  544. addEmptyProductRow();
  545. updateNoProductsMessage();
  546. });
  547. // 删除产品行
  548. $(document).on('click', '.delete-product', function() {
  549. if ($('.product-row').length > 1) {
  550. $(this).closest('.product-row').remove();
  551. reindexProductRows();
  552. calculateOrderTotal();
  553. updateNoProductsMessage();
  554. } else {
  555. // 如果只剩最后一个产品行,则清空它而不是删除
  556. $(this).closest('.product-row').remove();
  557. updateNoProductsMessage();
  558. calculateOrderTotal(); // 确保在删除最后一个产品时也更新总额
  559. }
  560. });
  561. // 产品搜索框聚焦时显示搜索提示
  562. $(document).on('focus', '.product-search', function() {
  563. // 隐藏所有已打开的产品搜索列表
  564. $('.productlist').hide();
  565. // 当前搜索框的值
  566. var searchTerm = $(this).val().trim();
  567. if (searchTerm.length >= 2) {
  568. // 找到当前行的产品列表并显示
  569. $(this).siblings('.productlist').show();
  570. }
  571. });
  572. // 产品搜索功能 - 行内搜索
  573. var productSearchTimeouts = {};
  574. $(document).on('keyup', '.product-search', function() {
  575. var $this = $(this);
  576. var rowIndex = $this.closest('.product-row').data('index');
  577. var searchTerm = $this.val().trim();
  578. var productList = $this.siblings('.productlist');
  579. // 清除之前的超时
  580. clearTimeout(productSearchTimeouts[rowIndex]);
  581. // 隐藏之前的结果
  582. productList.hide();
  583. // 如果搜索词少于2个字符,不执行搜索
  584. if (searchTerm.length < 2) {
  585. return;
  586. }
  587. // 设置一个300毫秒的超时,以减少请求数量
  588. productSearchTimeouts[rowIndex] = setTimeout(function() {
  589. $.ajax({
  590. url: 'get_product_info.php',
  591. type: 'GET',
  592. data: {search: searchTerm},
  593. dataType: 'json',
  594. success: function(data) {
  595. var ul = productList.find('ul');
  596. ul.empty();
  597. if (data && data.products && data.products.length > 0) {
  598. $.each(data.products, function(i, product) {
  599. ul.append('<li data-id="' + product.id + '">' +
  600. product.ProductName +
  601. (product.category_name ? ' <span class="category-tag">(' + product.category_name + ')</span>' : '') +
  602. '</li>');
  603. });
  604. productList.show();
  605. }
  606. },
  607. error: function() {
  608. console.log('搜索产品失败,请重试');
  609. }
  610. });
  611. }, 300);
  612. });
  613. // 点击选择产品 - 行内搜索结果
  614. $(document).on('click', '.productlist li', function() {
  615. var $this = $(this);
  616. var productId = $this.data('id');
  617. var productName = $this.text(); // 这会包含分类名,需要清理
  618. var categoryTag = $this.find('.category-tag').text();
  619. var row = $this.closest('.product-row');
  620. // 检查是否已存在相同的产品
  621. var isDuplicate = false;
  622. $('.product-id-input').not(row.find('.product-id-input')).each(function() {
  623. if ($(this).val() == productId) {
  624. isDuplicate = true;
  625. return false; // 跳出循环
  626. }
  627. });
  628. if (isDuplicate) {
  629. alert('该产品已添加,不能添加相同的产品');
  630. return;
  631. }
  632. // 清理产品名称,移除分类信息
  633. if (categoryTag) {
  634. productName = productName.replace(categoryTag, '').trim();
  635. }
  636. // 设置产品ID和名称
  637. row.find('.product-id-input').val(productId);
  638. row.find('.product-search').hide();
  639. // 显示包含分类的完整产品信息
  640. var displayName = productName;
  641. if (categoryTag) {
  642. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  643. }
  644. row.find('.selected-product-info').html(displayName).show();
  645. // 隐藏产品搜索结果
  646. row.find('.productlist').hide();
  647. // 获取产品规格信息
  648. getProductSpecifications(productId, row);
  649. });
  650. // 点击已选产品名显示的标签时,切换回搜索模式
  651. $(document).on('click dblclick', '.selected-product-info', function() {
  652. var row = $(this).closest('.product-row');
  653. var productId = row.find('.product-id-input').val();
  654. // 只有当已经选择了产品时才允许重新选择
  655. if (productId) {
  656. if (confirm('确定要重新选择产品吗?这将清除当前选择的产品信息。')) {
  657. // 清空产品ID
  658. row.find('.product-id-input').val('');
  659. // 隐藏产品信息,显示搜索框
  660. $(this).hide();
  661. row.find('.product-search').val('').show();
  662. // 清除单位信息
  663. row.find('.unit-input').val('');
  664. row.find('.unit-label').text('');
  665. // 清除总价信息并重新计算总额
  666. row.find('.total-price-input').val('0.00');
  667. calculateOrderTotal();
  668. }
  669. }
  670. });
  671. // 规格选择改变事件
  672. $(document).on('change', '.spec-select', function() {
  673. var $this = $(this);
  674. var row = $this.closest('.product-row');
  675. var specId = $this.val();
  676. var specData = $this.find('option:selected').data();
  677. if (specId) {
  678. // 检查是否已存在相同的产品规格组合
  679. var isDuplicate = false;
  680. $('.spec-select').not($this).each(function() {
  681. if ($(this).val() == specId) {
  682. isDuplicate = true;
  683. return false; // 跳出循环
  684. }
  685. });
  686. if (isDuplicate) {
  687. alert('该产品规格已添加,不能重复添加');
  688. $this.val(''); // 重置选择
  689. return;
  690. }
  691. // 设置规格ID到隐藏字段
  692. row.find('.spec-id-input').val(specId);
  693. // 获取选中项的文本内容作为显示信息
  694. var displayText = $this.find('option:selected').text();
  695. row.find('.spec-info').html(displayText).show();
  696. // 隐藏下拉框
  697. $this.hide();
  698. // 存储规格价格作为最低价格限制
  699. var minPrice = specData.price || 0;
  700. var priceInput = row.find('.price-input');
  701. priceInput.attr('data-min-price', minPrice);
  702. if (minPrice > 0) {
  703. priceInput.attr('placeholder', '输入单价');
  704. } else {
  705. priceInput.attr('placeholder', '输入单价');
  706. }
  707. // 设置最小订购数量
  708. var minQty = specData.minQty || 1;
  709. var qtyInput = row.find('.quantity-input');
  710. if (parseInt(qtyInput.val()) < minQty) {
  711. qtyInput.val(minQty);
  712. }
  713. qtyInput.attr('min', minQty);
  714. // 重新计算总价
  715. calculateItemTotal(row.find('.price-input')[0]);
  716. } else {
  717. // 清除规格相关信息
  718. row.find('.spec-id-input').val('');
  719. row.find('.price-input').attr('data-min-price', '0').attr('placeholder', '输入单价');
  720. row.find('.spec-info').html('').hide();
  721. calculateItemTotal(row.find('.price-input')[0]);
  722. }
  723. });
  724. // 点击其他地方隐藏下拉列表
  725. $(document).on('click', function(e) {
  726. if (!$(e.target).closest('.product-search').length && !$(e.target).closest('.productlist').length) {
  727. $('.productlist').hide();
  728. }
  729. if (!$(e.target).closest('.customer-search-container').length) {
  730. $('#customer_dropdown').hide();
  731. }
  732. });
  733. });
  734. function addEmptyProductRow() {
  735. var html = `
  736. <div class="product-row" data-index="${productIndex}">
  737. <span class="delete-product">×</span>
  738. <div class="row-section product-info">
  739. <div class="row-section-label"><span>产品</span></div>
  740. <input type="hidden" name="items[${productIndex}][product_id]" class="product-id-input" value="">
  741. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px;">
  742. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  743. <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
  744. </div>
  745. <div class="row-section product-quantity">
  746. <div class="row-section-label"><span>数量</span></div>
  747. <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input">
  748. </div>
  749. <div class="row-section product-unit">
  750. <div class="row-section-label"><span>单位</span></div>
  751. <span class="unit-label" style="display: inline-block; padding: 2px 5px; min-width: 30px;"></span>
  752. <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
  753. </div>
  754. <div class="row-section product-total">
  755. <div class="row-section-label"><span>总价</span></div>
  756. <input type="number" step="0.01" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
  757. </div>
  758. <!-- 保留隐藏的字段以便后端兼容 -->
  759. <input type="hidden" name="items[${productIndex}][discount_amount]" value="0" class="discount-amount-input">
  760. <input type="hidden" name="items[${productIndex}][discount_percent]" value="0" class="discount-percent-input">
  761. <input type="hidden" name="items[${productIndex}][notes]" value="">
  762. </div>
  763. `;
  764. $('#product-container').append(html);
  765. productIndex++;
  766. return productIndex - 1; // 返回新添加行的索引
  767. }
  768. function addProductRowWithProduct(productId, productName, categoryTag) {
  769. // 添加空行
  770. var rowIndex = addEmptyProductRow();
  771. var row = $('.product-row[data-index="' + rowIndex + '"]');
  772. // 设置产品ID和名称
  773. row.find('.product-id-input').val(productId);
  774. // 显示包含分类的完整产品信息
  775. var displayName = productName;
  776. if (categoryTag) {
  777. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  778. }
  779. row.find('.selected-product-info').html(displayName).show();
  780. row.find('.product-search').hide();
  781. // 获取产品规格信息
  782. getProductSpecifications(productId, row);
  783. // 更新无产品消息显示
  784. updateNoProductsMessage();
  785. }
  786. function reindexProductRows() {
  787. $('.product-row').each(function(index) {
  788. $(this).attr('data-index', index);
  789. $(this).find('select, input').each(function() {
  790. var name = $(this).attr('name');
  791. if (name) {
  792. name = name.replace(/items\[\d+\]/, 'items[' + index + ']');
  793. $(this).attr('name', name);
  794. }
  795. });
  796. });
  797. productIndex = $('.product-row').length;
  798. }
  799. function getProductSpecifications(productId, row) {
  800. if (!productId) return;
  801. // 获取当前选中的规格ID(如果有的话)
  802. var currentSpecId = row.find('.spec-id-input').val();
  803. console.log("加载规格 - 产品ID:", productId, "当前规格ID:", currentSpecId);
  804. $.ajax({
  805. url: 'get_product_info.php',
  806. type: 'GET',
  807. data: {product_id: productId},
  808. dataType: 'json',
  809. success: function(data) {
  810. if (data && data.product) {
  811. // 设置单位信息
  812. if (data.product.unit) {
  813. row.find('.unit-input').val(data.product.unit);
  814. row.find('.unit-label').text(data.product.unit);
  815. }
  816. } else {
  817. alert('获取产品信息失败');
  818. // 重置产品选择
  819. row.find('.product-id-input').val('');
  820. row.find('.selected-product-info').hide();
  821. row.find('.product-search').val('').show();
  822. }
  823. },
  824. error: function() {
  825. alert('获取产品信息失败,请重试');
  826. // 重置产品选择
  827. row.find('.product-id-input').val('');
  828. row.find('.selected-product-info').hide();
  829. row.find('.product-search').val('').show();
  830. }
  831. });
  832. }
  833. function getProductInfo(productId, row) {
  834. if (!productId) return;
  835. $.ajax({
  836. url: 'get_product_info.php',
  837. type: 'GET',
  838. data: {id: productId},
  839. dataType: 'json',
  840. success: function(data) {
  841. if (data) {
  842. row.find('.unit-input').val(data.unit);
  843. row.find('.unit-label').text(data.unit);
  844. // 只有当数据库中有价格信息时才设置价格
  845. if (data.price && data.price !== '0' && data.price !== '0.00') {
  846. //默认不设置单价
  847. //row.find('.price-input').val(data.price);
  848. }
  849. calculateOrderTotal();
  850. }
  851. }
  852. });
  853. }
  854. function calculateOrderTotal() {
  855. var total = 0;
  856. $('.total-price-input').each(function() {
  857. total += parseFloat($(this).val()) || 0;
  858. });
  859. // 更新总额和隐藏的小计字段
  860. $('#total-amount').text(total.toFixed(2));
  861. $('#total-amount-input').val(total.toFixed(2));
  862. $('#subtotal-input').val(total.toFixed(2)); // 为兼容性保留
  863. }
  864. function validateOrderForm() {
  865. var orderCode = $('#order_code').val();
  866. var customerId = $('#customer_id').val();
  867. var customerName = $('#customer_search').val() || $('#customer_selected').text().trim();
  868. var hasProducts = false;
  869. var allTotalPricesValid = true;
  870. var firstInvalidField = null;
  871. // 检查是否有产品行
  872. if ($('.product-row').length === 0) {
  873. alert('请至少添加一个产品');
  874. $('#add-product-btn').focus();
  875. return false;
  876. }
  877. $('.product-row').each(function() {
  878. var productId = $(this).find('.product-id-input').val();
  879. var totalPriceInput = $(this).find('.total-price-input');
  880. var totalPrice = parseFloat(totalPriceInput.val()) || 0;
  881. var productSearch = $(this).find('.product-search');
  882. // 检查产品是否已选择
  883. if (!productId) {
  884. if (!firstInvalidField) {
  885. firstInvalidField = productSearch;
  886. }
  887. return true; // continue
  888. }
  889. hasProducts = true;
  890. // 检查总价是否有效
  891. if (totalPrice <= 0) {
  892. allTotalPricesValid = false;
  893. if (!firstInvalidField) {
  894. firstInvalidField = totalPriceInput;
  895. }
  896. }
  897. });
  898. if (!orderCode) {
  899. alert('销售订单号不能为空');
  900. $('#order_code').focus();
  901. return false;
  902. }
  903. if (!customerId || customerId == '0') {
  904. alert('请选择客户');
  905. $('#customer_search').focus();
  906. return false;
  907. }
  908. if (!customerName) {
  909. alert('客户名称不能为空');
  910. $('#customer_search').focus();
  911. return false;
  912. }
  913. if (!hasProducts) {
  914. alert('请至少添加一个有效的产品');
  915. if (firstInvalidField) {
  916. firstInvalidField.focus();
  917. } else {
  918. $('#add-product-btn').focus();
  919. }
  920. return false;
  921. }
  922. if (!allTotalPricesValid) {
  923. alert('请为所有产品输入有效的总价');
  924. if (firstInvalidField) {
  925. firstInvalidField.focus();
  926. }
  927. return false;
  928. }
  929. return true;
  930. }
  931. function updateNoProductsMessage() {
  932. if ($('.product-row').length > 0) {
  933. $('#no-products-message').hide();
  934. } else {
  935. $('#no-products-message').show();
  936. }
  937. }
  938. </script>
  939. </div>
  940. </body>
  941. </html>