order_edit.php 54 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  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: 8px;
  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: 2;
  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.5;
  110. min-width: 60px;
  111. }
  112. .product-price {
  113. flex: 1;
  114. min-width: 100px;
  115. }
  116. .product-total {
  117. flex: 1;
  118. min-width: 100px;
  119. font-weight: bold;
  120. }
  121. .product-row input[type="number"] {
  122. width: 80px;
  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. </style>
  317. </head>
  318. <body>
  319. <div id="man_zone">
  320. <form name="form1" id="form1" method="post" action="order_save.php?<?= $hrefstr ?>" onsubmit="return validateOrderForm()">
  321. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  322. <tbody>
  323. <tr>
  324. <th width="8%">销售订单号</th>
  325. <td>
  326. <input type="text" id="order_code" name="order_code" value="<?= htmlspecialcharsFix($order['order_code']) ?>" class="txt1" />
  327. <input type="hidden" name="id" value="<?= $id ?>" />
  328. </td>
  329. </tr>
  330. <tr>
  331. <th width="8%">客户选择</th>
  332. <td>
  333. <div class="customer-search-container">
  334. <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']) ?>">
  335. <div id="customer_dropdown" class="customer-dropdown"></div>
  336. <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']) ?>">
  337. <?= htmlspecialcharsFix(isset($order['cs_code']) && $order['cs_code'] ? $order['cs_code'] . ' - ' . $order['cs_company'] : $order['cs_company']) ?>
  338. <span class="customer-clear-btn" data-type="customer">X</span>
  339. </div>
  340. <input type="hidden" name="customer_id" id="customer_id" value="<?= $order['customer_id'] ?>">
  341. </div>
  342. </td>
  343. </tr>
  344. <tr>
  345. <th width="8%">出货日期</th>
  346. <td>
  347. <input type="date" id="order_date" name="order_date" value="<?= substr($order['order_date'], 0, 10) ?>" class="txt1" />
  348. </td>
  349. </tr>
  350. <tr>
  351. <th width="8%" valign="top">产品列表</th>
  352. <td>
  353. <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
  354. <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;">
  355. <div style="flex: 2; min-width: 200px;">产品</div>
  356. <div style="flex: 2; min-width: 200px;">规格</div>
  357. <div style="flex: 1; min-width: 80px;">数量</div>
  358. <div style="flex: 0.5; min-width: 60px;">单位</div>
  359. <div style="flex: 1; min-width: 100px;">单价</div>
  360. <div style="flex: 1; min-width: 100px;">总价</div>
  361. </div>
  362. <div id="product-container">
  363. <?php foreach ($orderItems as $index => $item): ?>
  364. <div class="product-row" data-index="<?= $index ?>">
  365. <span class="delete-product">×</span>
  366. <div class="row-section product-info">
  367. <div class="row-section-label"><span>产品</span></div>
  368. <input type="hidden" name="items[<?= $index ?>][product_id]" class="product-id-input" value="<?= $item['product_id'] ?>">
  369. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px; display: none;">
  370. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  371. <div class="selected-product-info" style="cursor: pointer;" title="点击重新选择产品">
  372. <?= htmlspecialcharsFix($item['ProductName'] ?? '') ?>
  373. <?php if (!empty($item['category_name'])): ?>
  374. <span class="category-tag">(<?= htmlspecialcharsFix($item['category_name']) ?>)</span>
  375. <?php endif; ?>
  376. </div>
  377. </div>
  378. <div class="row-section product-spec">
  379. <div class="row-section-label"><span>规格</span></div>
  380. <input type="hidden" name="items[<?= $index ?>][spec_id]" class="spec-id-input" value="<?= $item['specification_id'] ?? 0 ?>">
  381. <!-- 规格选择框将在加载产品时填充 -->
  382. <select class="spec-select" name="items[<?= $index ?>][spec_select]" style="display: none;">
  383. <option value="">请选择规格</option>
  384. </select>
  385. <div class="spec-info" style="cursor: pointer;" title="点击修改规格">
  386. <?php if (!empty($item['spec_name'])): ?>
  387. <?= htmlspecialcharsFix($item['spec_name']) ?>: <?= htmlspecialcharsFix($item['spec_value'] ?? '') ?>
  388. <?php endif; ?>
  389. </div>
  390. </div>
  391. <div class="row-section product-quantity">
  392. <div class="row-section-label"><span>数量</span></div>
  393. <input type="number" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  394. </div>
  395. <div class="row-section product-unit">
  396. <div class="row-section-label"><span>单位</span></div>
  397. <span class="unit-label"><?= htmlspecialcharsFix($item['unit']) ?></span>
  398. <input type="hidden" name="items[<?= $index ?>][unit]" value="<?= htmlspecialcharsFix($item['unit']) ?>" class="unit-input">
  399. </div>
  400. <div class="row-section product-price">
  401. <div class="row-section-label"><span>单价</span></div>
  402. <input type="number" step="0.01" name="items[<?= $index ?>][unit_price]" value="<?= $item['unit_price'] ?>" class="price-input" onchange="calculateItemTotal(this)">
  403. </div>
  404. <div class="row-section product-total">
  405. <div class="row-section-label"><span>总价</span></div>
  406. <span class="total-price-display" style="display: inline-block; background-color: #f0f0f0; border: 1px solid #ddd; padding: 2px 8px; min-width: 60px; text-align: right;"><?= number_format($item['total_price'], 2) ?></span>
  407. <input type="hidden" name="items[<?= $index ?>][total_price]" value="<?= $item['total_price'] ?>" class="total-price-input">
  408. </div>
  409. <!-- 保留隐藏的折扣字段以便后端兼容 -->
  410. <input type="hidden" name="items[<?= $index ?>][discount_amount]" value="0" class="discount-amount-input">
  411. <input type="hidden" name="items[<?= $index ?>][discount_percent]" value="0" class="discount-percent-input">
  412. <input type="hidden" name="items[<?= $index ?>][notes]" value="<?= htmlspecialcharsFix($item['notes'] ?? '') ?>">
  413. </div>
  414. <?php endforeach; ?>
  415. <!-- 产品行将通过搜索添加 -->
  416. <?php if (count($orderItems) == 0): ?>
  417. <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;">
  418. <i class="fa fa-info-circle"></i> 请点击"添加产品"按钮添加产品
  419. </div>
  420. <?php endif; ?>
  421. </div>
  422. <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);">
  423. <div style="display: flex; justify-content: flex-end; align-items: center;">
  424. <label style="font-size: 16px; margin-right: 10px;">订单总额:</label>
  425. <span id="total-amount" style="font-size: 18px; font-weight: bold; color: #e74c3c;"><?= number_format($order['total_amount'], 2) ?></span>
  426. <input type="hidden" name="total_amount" id="total-amount-input" value="<?= $order['total_amount'] ?>">
  427. <input type="hidden" name="subtotal" id="subtotal-input" value="<?= $order['subtotal'] ?>">
  428. <input type="hidden" name="discount_amount" id="order-discount" value="0">
  429. </div>
  430. </div>
  431. </td>
  432. </tr>
  433. <tr>
  434. <th width="8%">订单备注</th>
  435. <td>
  436. <textarea name="notes" rows="3" style="width: 90%;"><?= htmlspecialcharsFix($order['notes']) ?></textarea>
  437. </td>
  438. </tr>
  439. <tr>
  440. <th></th>
  441. <td>
  442. <input type="submit" name="save" value="保存订单" class="btn1">
  443. <input type="button" value="返回" class="btn1" onClick="location.href='order.php?<?= $hrefstr ?>'" />
  444. </td>
  445. </tr>
  446. </tbody>
  447. </table>
  448. </form>
  449. <script>
  450. var productIndex = <?= count($orderItems) ?>;
  451. $(document).ready(function() {
  452. // 初始化计算
  453. calculateOrderTotal();
  454. // 初始化无产品消息
  455. updateNoProductsMessage();
  456. // 初始化现有产品的规格选择
  457. $('.product-row').each(function() {
  458. var row = $(this);
  459. var productId = row.find('.product-id-input').val();
  460. var specId = row.find('.spec-id-input').val();
  461. console.log("初始化行 - 行索引:", row.data('index'), "产品ID:", productId, "规格ID:", specId);
  462. if (productId) {
  463. // 加载产品规格
  464. getProductSpecifications(productId, row);
  465. }
  466. });
  467. // 隐藏搜索框,因为已经选择了客户
  468. $('#customer_search').hide();
  469. // 客户搜索功能
  470. var customerSearchTimeout = null;
  471. var customerIsComposing = false;
  472. // 监听输入法组合事件
  473. $(document).on('compositionstart', '.customer-search', function() {
  474. customerIsComposing = true;
  475. });
  476. $(document).on('compositionend', '.customer-search', function() {
  477. customerIsComposing = false;
  478. $(this).trigger('input'); // 手动触发一次input事件
  479. });
  480. // 客户搜索输入处理
  481. $(document).on('input', '#customer_search', function() {
  482. // 如果是输入法正在组合中文,不处理
  483. if (customerIsComposing) return;
  484. var $this = $(this);
  485. var searchTerm = $this.val().trim();
  486. var customerDropdown = $('#customer_dropdown');
  487. // 清除之前的超时
  488. clearTimeout(customerSearchTimeout);
  489. // 隐藏之前的结果
  490. customerDropdown.hide().empty();
  491. // 清除之前的选择
  492. $('#customer_id').val('0');
  493. $('#customer_selected').hide();
  494. // 如果搜索词少于1个字符,不执行搜索
  495. if (searchTerm.length < 1) {
  496. return;
  497. }
  498. // 设置一个300毫秒的超时,以减少请求数量
  499. customerSearchTimeout = setTimeout(function() {
  500. $.ajax({
  501. url: 'get_customer_search.php',
  502. type: 'GET',
  503. data: {search: searchTerm},
  504. dataType: 'json',
  505. success: function(data) {
  506. customerDropdown.empty();
  507. if (data && data.customers && data.customers.length > 0) {
  508. $.each(data.customers, function(i, customer) {
  509. var displayText = customer.cs_company;
  510. if (customer.cs_code) {
  511. displayText = customer.cs_code + ' - ' + displayText;
  512. }
  513. var item = $('<div class="customer-item"></div>')
  514. .attr('data-id', customer.id)
  515. .attr('data-company', customer.cs_company)
  516. .attr('data-display', displayText)
  517. .text(displayText);
  518. customerDropdown.append(item);
  519. });
  520. customerDropdown.show();
  521. }
  522. },
  523. error: function() {
  524. console.log('搜索客户失败,请重试');
  525. }
  526. });
  527. }, 300);
  528. });
  529. // 点击选择客户
  530. $(document).on('click', '.customer-item', function() {
  531. var $this = $(this);
  532. var customerId = $this.data('id');
  533. var customerName = $this.data('company');
  534. var displayText = $this.data('display');
  535. // 设置选中的客户ID和名称
  536. $('#customer_id').val(customerId);
  537. $('#customer_search').hide();
  538. $('#customer_selected').text(displayText).append('<span class="customer-clear-btn" data-type="customer">X</span>').show();
  539. // 添加标题属性,便于查看完整信息
  540. $('#customer_selected').attr('title', displayText);
  541. // 隐藏下拉菜单
  542. $('#customer_dropdown').hide();
  543. });
  544. // 点击X按钮清除选择的客户
  545. $(document).on('click', '.customer-clear-btn', function(e) {
  546. e.stopPropagation();
  547. // 显示搜索框,隐藏已选信息
  548. $('#customer_search').val('').show();
  549. $('#customer_selected').hide();
  550. // 清空客户ID
  551. $('#customer_id').val('0');
  552. });
  553. // 点击其他地方隐藏下拉列表
  554. $(document).on('click', function(e) {
  555. if (!$(e.target).closest('.customer-search-container').length) {
  556. $('#customer_dropdown').hide();
  557. }
  558. });
  559. // 添加产品行按钮点击事件
  560. $('#add-product-btn').on('click', function() {
  561. addEmptyProductRow();
  562. updateNoProductsMessage();
  563. });
  564. // 删除产品行
  565. $(document).on('click', '.delete-product', function() {
  566. if ($('.product-row').length > 1) {
  567. $(this).closest('.product-row').remove();
  568. reindexProductRows();
  569. calculateOrderTotal();
  570. updateNoProductsMessage();
  571. } else {
  572. // 如果只剩最后一个产品行,则清空它而不是删除
  573. $(this).closest('.product-row').remove();
  574. updateNoProductsMessage();
  575. calculateOrderTotal(); // 确保在删除最后一个产品时也更新总额
  576. }
  577. });
  578. // 产品搜索框聚焦时显示搜索提示
  579. $(document).on('focus', '.product-search', function() {
  580. // 隐藏所有已打开的产品搜索列表
  581. $('.productlist').hide();
  582. // 当前搜索框的值
  583. var searchTerm = $(this).val().trim();
  584. if (searchTerm.length >= 2) {
  585. // 找到当前行的产品列表并显示
  586. $(this).siblings('.productlist').show();
  587. }
  588. });
  589. // 产品搜索功能 - 行内搜索
  590. var productSearchTimeouts = {};
  591. $(document).on('keyup', '.product-search', function() {
  592. var $this = $(this);
  593. var rowIndex = $this.closest('.product-row').data('index');
  594. var searchTerm = $this.val().trim();
  595. var productList = $this.siblings('.productlist');
  596. // 清除之前的超时
  597. clearTimeout(productSearchTimeouts[rowIndex]);
  598. // 隐藏之前的结果
  599. productList.hide();
  600. // 如果搜索词少于2个字符,不执行搜索
  601. if (searchTerm.length < 2) {
  602. return;
  603. }
  604. // 设置一个300毫秒的超时,以减少请求数量
  605. productSearchTimeouts[rowIndex] = setTimeout(function() {
  606. $.ajax({
  607. url: 'get_product_info.php',
  608. type: 'GET',
  609. data: {search: searchTerm},
  610. dataType: 'json',
  611. success: function(data) {
  612. var ul = productList.find('ul');
  613. ul.empty();
  614. if (data && data.products && data.products.length > 0) {
  615. $.each(data.products, function(i, product) {
  616. ul.append('<li data-id="' + product.id + '">' +
  617. product.ProductName +
  618. (product.category_name ? ' <span class="category-tag">(' + product.category_name + ')</span>' : '') +
  619. '</li>');
  620. });
  621. productList.show();
  622. }
  623. },
  624. error: function() {
  625. console.log('搜索产品失败,请重试');
  626. }
  627. });
  628. }, 300);
  629. });
  630. // 点击选择产品 - 行内搜索结果
  631. $(document).on('click', '.productlist li', function() {
  632. var $this = $(this);
  633. var productId = $this.data('id');
  634. var productName = $this.text(); // 这会包含分类名,需要清理
  635. var categoryTag = $this.find('.category-tag').text();
  636. var row = $this.closest('.product-row');
  637. // 清理产品名称,移除分类信息
  638. if (categoryTag) {
  639. productName = productName.replace(categoryTag, '').trim();
  640. }
  641. // 设置产品ID和名称
  642. row.find('.product-id-input').val(productId);
  643. row.find('.product-search').hide();
  644. // 显示包含分类的完整产品信息
  645. var displayName = productName;
  646. if (categoryTag) {
  647. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  648. }
  649. row.find('.selected-product-info').html(displayName).show();
  650. // 隐藏产品搜索结果
  651. row.find('.productlist').hide();
  652. // 获取产品规格信息
  653. getProductSpecifications(productId, row);
  654. });
  655. // 规格选择改变事件
  656. $(document).on('change', '.spec-select', function() {
  657. var $this = $(this);
  658. var row = $this.closest('.product-row');
  659. var specId = $this.val();
  660. var specData = $this.find('option:selected').data();
  661. if (specId) {
  662. // 检查是否已存在相同的产品规格组合
  663. var isDuplicate = false;
  664. $('.spec-select').not($this).each(function() {
  665. if ($(this).val() == specId) {
  666. isDuplicate = true;
  667. return false; // 跳出循环
  668. }
  669. });
  670. if (isDuplicate) {
  671. alert('该产品规格已添加,不能重复添加');
  672. $this.val(''); // 重置选择
  673. return;
  674. }
  675. // 设置规格ID到隐藏字段
  676. row.find('.spec-id-input').val(specId);
  677. // 获取选中项的文本内容作为显示信息
  678. var displayText = $this.find('option:selected').text();
  679. row.find('.spec-info').html(displayText).show();
  680. // 隐藏下拉框
  681. $this.hide();
  682. // 存储规格价格作为最低价格限制
  683. var minPrice = specData.price || 0;
  684. var priceInput = row.find('.price-input');
  685. priceInput.attr('data-min-price', minPrice);
  686. if (minPrice > 0) {
  687. priceInput.attr('placeholder', '输入单价');
  688. } else {
  689. priceInput.attr('placeholder', '输入单价');
  690. }
  691. // 设置最小订购数量
  692. var minQty = specData.minQty || 1;
  693. var qtyInput = row.find('.quantity-input');
  694. if (parseInt(qtyInput.val()) < minQty) {
  695. qtyInput.val(minQty);
  696. }
  697. qtyInput.attr('min', minQty);
  698. // 重新计算总价
  699. calculateItemTotal(row.find('.price-input')[0]);
  700. } else {
  701. // 清除规格相关信息
  702. row.find('.spec-id-input').val('');
  703. row.find('.price-input').attr('data-min-price', '0').attr('placeholder', '输入单价');
  704. row.find('.spec-info').html('').hide();
  705. calculateItemTotal(row.find('.price-input')[0]);
  706. }
  707. });
  708. // 点击其他地方隐藏下拉列表
  709. $(document).on('click', function(e) {
  710. if (!$(e.target).closest('.product-search').length && !$(e.target).closest('.productlist').length) {
  711. $('.productlist').hide();
  712. }
  713. if (!$(e.target).closest('.customer-search-container').length) {
  714. $('#customer_dropdown').hide();
  715. }
  716. });
  717. // 点击已选产品名显示的标签时,切换回搜索模式
  718. $(document).on('click dblclick', '.selected-product-info', function() {
  719. var row = $(this).closest('.product-row');
  720. var productId = row.find('.product-id-input').val();
  721. // 只有当已经选择了产品时才允许重新选择
  722. if (productId) {
  723. if (confirm('确定要重新选择产品吗?这将清除当前选择的产品及其规格信息。')) {
  724. // 清空产品ID和选择的规格
  725. row.find('.product-id-input').val('');
  726. row.find('.spec-id-input').val('');
  727. // 隐藏产品信息,显示搜索框
  728. $(this).hide();
  729. row.find('.product-search').val('').show();
  730. // 隐藏并清空规格选择
  731. row.find('.spec-select').hide().empty();
  732. row.find('.spec-info').html('');
  733. // 清除单位信息
  734. row.find('.unit-input').val('');
  735. row.find('.unit-label').text('');
  736. // 清除价格信息并重新计算总额
  737. row.find('.price-input').val('');
  738. calculateItemTotal(row.find('.price-input')[0]);
  739. }
  740. }
  741. });
  742. // 点击规格信息时显示规格选择下拉框
  743. $(document).on('click', '.spec-info', function() {
  744. var row = $(this).closest('.product-row');
  745. var specSelect = row.find('.spec-select');
  746. if (specSelect.find('option').length > 1) {
  747. // 隐藏规格信息,显示规格选择下拉框
  748. $(this).hide();
  749. specSelect.show().focus();
  750. }
  751. });
  752. });
  753. function addEmptyProductRow() {
  754. var html = `
  755. <div class="product-row" data-index="${productIndex}">
  756. <span class="delete-product">×</span>
  757. <div class="row-section product-info">
  758. <div class="row-section-label"><span>产品</span></div>
  759. <input type="hidden" name="items[${productIndex}][product_id]" class="product-id-input" value="">
  760. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px;">
  761. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  762. <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
  763. </div>
  764. <div class="row-section product-spec">
  765. <div class="row-section-label"><span>规格</span></div>
  766. <input type="hidden" name="items[${productIndex}][spec_id]" class="spec-id-input" value="">
  767. <select class="spec-select" name="items[${productIndex}][spec_select]" style="display: none;">
  768. <option value="">请选择规格</option>
  769. </select>
  770. <div class="spec-info" style="cursor: pointer;" title="点击修改规格"></div>
  771. </div>
  772. <div class="row-section product-quantity">
  773. <div class="row-section-label"><span>数量</span></div>
  774. <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  775. </div>
  776. <div class="row-section product-unit">
  777. <div class="row-section-label"><span>单位</span></div>
  778. <span class="unit-label" style="display: inline-block; padding: 2px 5px; min-width: 30px;"></span>
  779. <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
  780. </div>
  781. <div class="row-section product-price">
  782. <div class="row-section-label"><span>单价</span></div>
  783. <input type="number" step="0.01" name="items[${productIndex}][unit_price]" value="" class="price-input" placeholder="输入单价" onchange="calculateItemTotal(this)">
  784. </div>
  785. <div class="row-section product-total">
  786. <div class="row-section-label"><span>总价</span></div>
  787. <span class="total-price-display" style="display: inline-block; background-color: #f0f0f0; border: 1px solid #ddd; padding: 2px 8px; min-width: 60px; text-align: right;">0.00</span>
  788. <input type="hidden" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input">
  789. </div>
  790. <!-- 保留隐藏的字段以便后端兼容 -->
  791. <input type="hidden" name="items[${productIndex}][discount_amount]" value="0" class="discount-amount-input">
  792. <input type="hidden" name="items[${productIndex}][discount_percent]" value="0" class="discount-percent-input">
  793. <input type="hidden" name="items[${productIndex}][notes]" value="">
  794. </div>
  795. `;
  796. $('#product-container').append(html);
  797. productIndex++;
  798. return productIndex - 1; // 返回新添加行的索引
  799. }
  800. function addProductRowWithProduct(productId, productName, categoryTag) {
  801. // 添加空行
  802. var rowIndex = addEmptyProductRow();
  803. var row = $('.product-row[data-index="' + rowIndex + '"]');
  804. // 设置产品ID和名称
  805. row.find('.product-id-input').val(productId);
  806. // 显示包含分类的完整产品信息
  807. var displayName = productName;
  808. if (categoryTag) {
  809. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  810. }
  811. row.find('.selected-product-info').html(displayName).show();
  812. row.find('.product-search').hide();
  813. // 获取产品规格信息
  814. getProductSpecifications(productId, row);
  815. // 更新无产品消息显示
  816. updateNoProductsMessage();
  817. }
  818. function reindexProductRows() {
  819. $('.product-row').each(function(index) {
  820. $(this).attr('data-index', index);
  821. $(this).find('select, input').each(function() {
  822. var name = $(this).attr('name');
  823. if (name) {
  824. name = name.replace(/items\[\d+\]/, 'items[' + index + ']');
  825. $(this).attr('name', name);
  826. }
  827. });
  828. });
  829. productIndex = $('.product-row').length;
  830. }
  831. function getProductSpecifications(productId, row) {
  832. if (!productId) return;
  833. // 获取当前选中的规格ID(如果有的话)
  834. var currentSpecId = row.find('.spec-id-input').val();
  835. console.log("加载规格 - 产品ID:", productId, "当前规格ID:", currentSpecId);
  836. $.ajax({
  837. url: 'get_product_info.php',
  838. type: 'GET',
  839. data: {product_id: productId},
  840. dataType: 'json',
  841. success: function(data) {
  842. if (data && data.product && data.specifications) {
  843. console.log("获取到规格数据:", data.specifications);
  844. // 设置单位信息
  845. if (data.product.unit) {
  846. row.find('.unit-input').val(data.product.unit);
  847. row.find('.unit-label').text(data.product.unit);
  848. }
  849. // 处理规格信息
  850. var specifications = data.specifications;
  851. console.log("获取到的规格列表详情:", JSON.stringify(specifications)); // 打印完整的规格对象
  852. if (specifications.length === 0) {
  853. // 如果是编辑现有产品,不显示警告
  854. if (!currentSpecId) {
  855. alert('此产品没有规格信息,请添加规格后再选择');
  856. // 重置产品选择
  857. row.find('.product-id-input').val('');
  858. row.find('.selected-product-info').hide();
  859. row.find('.product-search').val('').show();
  860. }
  861. return;
  862. }
  863. // 填充规格选择下拉框
  864. var specSelect = row.find('.spec-select');
  865. specSelect.empty();
  866. specSelect.append('<option value="">请选择规格</option>');
  867. var foundSelectedSpec = false;
  868. $.each(specifications, function(i, spec) {
  869. var displayText = spec.spec_name + ': ' + spec.spec_value;
  870. if (spec.price) {
  871. displayText += ' (¥' + spec.price + ')';
  872. }
  873. var option = $('<option></option>')
  874. .attr('value', spec.id)
  875. .text(displayText)
  876. .data('price', spec.price)
  877. .data('minQty', spec.min_order_quantity)
  878. .data('code', spec.spec_code);
  879. // 如果是当前选中的规格,设置selected属性
  880. if (currentSpecId && parseInt(spec.id) === parseInt(currentSpecId)) {
  881. console.log("找到匹配的规格 - 规格ID:", spec.id, "当前规格ID:", currentSpecId,
  882. "规格名称:", spec.spec_name, "规格值:", spec.spec_value);
  883. option.prop('selected', true);
  884. foundSelectedSpec = true;
  885. // 更新规格信息显示
  886. row.find('.spec-info').html(displayText);
  887. // 设置参考价格
  888. var priceInput = row.find('.price-input');
  889. priceInput.attr('data-min-price', spec.price || 0);
  890. } else {
  891. console.log("规格不匹配 - 规格ID:", spec.id, "当前规格ID:", currentSpecId,
  892. "类型:", typeof spec.id, typeof currentSpecId);
  893. }
  894. specSelect.append(option);
  895. });
  896. // 显示规格选择下拉框并隐藏spec-info
  897. if (!currentSpecId || !foundSelectedSpec) {
  898. // 如果没有选中规格,显示下拉框
  899. specSelect.show();
  900. row.find('.spec-info').hide();
  901. } else {
  902. // 如果已选中规格,显示规格信息
  903. specSelect.hide();
  904. row.find('.spec-info').show();
  905. }
  906. // 如果在规格列表中找不到已选择的规格
  907. if (currentSpecId && !foundSelectedSpec) {
  908. console.log("在规格列表中找不到已选择的规格ID:", currentSpecId);
  909. // 不清除规格ID,保留数据库中的值
  910. // row.find('.spec-id-input').val('');
  911. // 隐藏规格选择下拉框,保留现有规格信息
  912. specSelect.hide();
  913. row.find('.spec-info').show();
  914. }
  915. } else {
  916. // 如果是编辑现有产品,不显示警告
  917. if (!currentSpecId) {
  918. alert('获取产品规格失败');
  919. // 重置产品选择
  920. row.find('.product-id-input').val('');
  921. row.find('.selected-product-info').hide();
  922. row.find('.product-search').val('').show();
  923. }
  924. }
  925. },
  926. error: function() {
  927. // 如果是编辑现有产品,不显示警告
  928. if (!currentSpecId) {
  929. alert('获取产品规格失败,请重试');
  930. // 重置产品选择
  931. row.find('.product-id-input').val('');
  932. row.find('.selected-product-info').hide();
  933. row.find('.product-search').val('').show();
  934. }
  935. }
  936. });
  937. }
  938. function getProductInfo(productId, row) {
  939. if (!productId) return;
  940. $.ajax({
  941. url: 'get_product_info.php',
  942. type: 'GET',
  943. data: {id: productId},
  944. dataType: 'json',
  945. success: function(data) {
  946. if (data) {
  947. row.find('.unit-input').val(data.unit);
  948. row.find('.unit-label').text(data.unit);
  949. // 只有当数据库中有价格信息时才设置价格
  950. if (data.price && data.price !== '0' && data.price !== '0.00') {
  951. //默认不设置单价
  952. //row.find('.price-input').val(data.price);
  953. }
  954. calculateItemTotal(row.find('.price-input')[0]);
  955. }
  956. }
  957. });
  958. }
  959. function calculateItemTotal(element) {
  960. var row = $(element).closest('.product-row');
  961. var quantity = parseInt(row.find('.quantity-input').val()) || 0;
  962. var priceInput = row.find('.price-input');
  963. var priceValue = priceInput.val().trim();
  964. var price = (priceValue === '') ? 0 : (parseFloat(priceValue) || 0);
  965. var total = quantity * price;
  966. if (total < 0) total = 0;
  967. // 更新显示元素和隐藏输入框
  968. row.find('.total-price-display').text(total.toFixed(2));
  969. row.find('.total-price-input').val(total.toFixed(2));
  970. calculateOrderTotal();
  971. }
  972. function calculateOrderTotal() {
  973. var total = 0;
  974. $('.total-price-input').each(function() {
  975. total += parseFloat($(this).val()) || 0;
  976. });
  977. // 更新总额和隐藏的小计字段
  978. $('#total-amount').text(total.toFixed(2));
  979. $('#total-amount-input').val(total.toFixed(2));
  980. $('#subtotal-input').val(total.toFixed(2)); // 为兼容性保留
  981. }
  982. function validateOrderForm() {
  983. var orderCode = $('#order_code').val();
  984. var customerId = $('#customer_id').val();
  985. var customerName = $('#customer_search').val() || $('#customer_selected').text().trim();
  986. var hasProducts = false;
  987. var allSpecsSelected = true;
  988. var allPricesValid = true;
  989. var allPricesHighEnough = true;
  990. var firstInvalidField = null;
  991. // 检查是否有产品行
  992. if ($('.product-row').length === 0) {
  993. alert('请至少添加一个产品');
  994. $('#add-product-btn').focus();
  995. return false;
  996. }
  997. $('.product-row').each(function() {
  998. var productId = $(this).find('.product-id-input').val();
  999. var specId = $(this).find('.spec-id-input').val();
  1000. var priceInput = $(this).find('.price-input');
  1001. var priceValue = priceInput.val().trim();
  1002. var price = parseFloat(priceValue) || 0;
  1003. var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
  1004. var specSelect = $(this).find('.spec-select');
  1005. var productSearch = $(this).find('.product-search');
  1006. // 检查产品是否已选择
  1007. if (!productId) {
  1008. if (!firstInvalidField) {
  1009. firstInvalidField = productSearch;
  1010. }
  1011. return true; // continue
  1012. }
  1013. hasProducts = true;
  1014. // 检查规格是否已选择
  1015. if (!specId && specSelect.is(':visible')) {
  1016. allSpecsSelected = false;
  1017. if (!firstInvalidField) {
  1018. firstInvalidField = specSelect;
  1019. }
  1020. }
  1021. // 检查单价是否有效
  1022. if (priceValue === '' || isNaN(parseFloat(priceValue))) {
  1023. allPricesValid = false;
  1024. if (!firstInvalidField) {
  1025. firstInvalidField = priceInput;
  1026. }
  1027. }
  1028. // 检查单价是否大于等于规格价格
  1029. if (minPrice > 0 && price < minPrice) {
  1030. allPricesHighEnough = false;
  1031. if (!firstInvalidField) {
  1032. firstInvalidField = priceInput;
  1033. }
  1034. }
  1035. });
  1036. if (!orderCode) {
  1037. alert('销售订单号不能为空');
  1038. $('#order_code').focus();
  1039. return false;
  1040. }
  1041. if (!customerId || customerId == '0') {
  1042. alert('请选择客户');
  1043. $('#customer_search').focus();
  1044. return false;
  1045. }
  1046. if (!customerName) {
  1047. alert('客户名称不能为空');
  1048. $('#customer_search').focus();
  1049. return false;
  1050. }
  1051. if (!hasProducts) {
  1052. alert('请至少添加一个有效的产品');
  1053. if (firstInvalidField) {
  1054. firstInvalidField.focus();
  1055. } else {
  1056. $('#add-product-btn').focus();
  1057. }
  1058. return false;
  1059. }
  1060. if (!allSpecsSelected) {
  1061. alert('请为所有产品选择规格');
  1062. if (firstInvalidField) {
  1063. firstInvalidField.focus();
  1064. }
  1065. return false;
  1066. }
  1067. if (!allPricesValid) {
  1068. alert('请为所有产品输入有效的单价');
  1069. if (firstInvalidField) {
  1070. firstInvalidField.focus();
  1071. }
  1072. return false;
  1073. }
  1074. if (!allPricesHighEnough) {
  1075. alert('单价不能低于规格设定的参考价格');
  1076. if (firstInvalidField) {
  1077. firstInvalidField.focus();
  1078. }
  1079. return false;
  1080. }
  1081. return true;
  1082. }
  1083. function updateNoProductsMessage() {
  1084. if ($('.product-row').length > 0) {
  1085. $('#no-products-message').hide();
  1086. } else {
  1087. $('#no-products-message').show();
  1088. }
  1089. }
  1090. </script>
  1091. </div>
  1092. </body>
  1093. </html>