order_add.php 44 KB

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