order_add.php 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910
  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: 20px; /* 增加间距 */
  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: 3;
  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.8;
  95. min-width: 60px;
  96. }
  97. .product-price {
  98. flex: 1;
  99. min-width: 100px;
  100. }
  101. .product-total {
  102. flex: 1.2;
  103. min-width: 100px;
  104. font-weight: bold;
  105. }
  106. .product-row input[type="number"] {
  107. width: 90%;
  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. .product-row .total-price-input {
  303. width: 90%;
  304. }
  305. </style>
  306. </head>
  307. <body>
  308. <div id="man_zone">
  309. <form name="form1" id="form1" method="post" action="order_save.php?<?= $hrefstr ?>" onsubmit="return validateOrderForm()">
  310. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  311. <tbody>
  312. <tr>
  313. <th width="8%">销售订单号</th>
  314. <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入销售订单号 (多个用 / 分隔) " /></td>
  315. </tr>
  316. <tr>
  317. <th width="8%">客户选择</th>
  318. <td>
  319. <?php if ($customerInfo): ?>
  320. <!-- 已有客户ID,只显示客户信息 -->
  321. <div class="customer-search-container">
  322. <input type="hidden" name="customer_id" id="customer_id" value="<?= $customerId ?>">
  323. <!-- 联系人字段设为空 -->
  324. <input type="hidden" name="contact_id" id="contact_id" value="">
  325. <div class="selected-customer-info" style="display: block;" title="<?= htmlspecialcharsFix($customerInfo['cs_code'] . ' - ' . $customerInfo['cs_company']) ?>">
  326. <?= htmlspecialcharsFix($customerInfo['cs_code'] . ' - ' . $customerInfo['cs_company']) ?>
  327. <span class="customer-clear-btn" data-type="customer" style="display: none;">X</span>
  328. </div>
  329. </div>
  330. <?php else: ?>
  331. <!-- 无客户ID,显示搜索框 -->
  332. <div class="customer-search-container">
  333. <input type="text" id="customer_search" class="customer-search txt1" data-type="customer" placeholder="输入客户编码或名称搜索..." style="width: 100%;">
  334. <div id="customer_dropdown" class="customer-dropdown"></div>
  335. <div id="customer_selected" class="selected-customer-info" title=""></div>
  336. <input type="hidden" name="customer_id" id="customer_id" value="0">
  337. <input type="hidden" name="contact_id" id="contact_id" value="">
  338. </div>
  339. <?php endif; ?>
  340. </td>
  341. </tr>
  342. <tr>
  343. <th width="8%">出货日期</th>
  344. <td><input type="date" id="order_date" name="order_date" value="<?= date('Y-m-d') ?>" class="txt1" /></td>
  345. </tr>
  346. <tr>
  347. <th width="8%" valign="top">产品列表</th>
  348. <td>
  349. <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
  350. <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;">
  351. <div style="flex: 3; min-width: 200px;">产品</div>
  352. <div style="flex: 1; min-width: 80px;">数量</div>
  353. <div style="flex: 0.8; min-width: 60px;">单位</div>
  354. <div style="flex: 1.2; min-width: 100px;">总价</div>
  355. </div>
  356. <div id="product-container">
  357. <!-- 产品行将通过添加按钮添加 -->
  358. <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;">
  359. <i class="fa fa-info-circle"></i> 请点击"添加产品"按钮添加产品
  360. </div>
  361. </div>
  362. <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);">
  363. <div style="display: flex; justify-content: flex-end; align-items: center;">
  364. <label style="font-size: 16px; margin-right: 10px;">订单总额:</label>
  365. <span id="total-amount" style="font-size: 18px; font-weight: bold; color: #e74c3c;">0.00</span>
  366. <input type="hidden" name="total_amount" id="total-amount-input" value="0.00">
  367. <input type="hidden" name="subtotal" id="subtotal-input" value="0.00">
  368. </div>
  369. </div>
  370. </td>
  371. </tr>
  372. <tr>
  373. <th width="8%">订单备注</th>
  374. <td>
  375. <textarea name="notes" rows="3" style="width: 90%;"></textarea>
  376. </td>
  377. </tr>
  378. <tr>
  379. <th></th>
  380. <td>
  381. <input type="submit" name="save" value="保存订单" class="btn1">
  382. <input type="button" value="返回" class="btn1" onClick="location.href='order.php?<?= $hrefstr ?>'" />
  383. </td>
  384. </tr>
  385. </tbody>
  386. </table>
  387. </form>
  388. <script>
  389. var productIndex = 1;
  390. $(document).ready(function() {
  391. // 初始化计算
  392. calculateOrderTotal();
  393. // 移除第一个默认产品行(如果不需要的话)
  394. if ($('.product-row').length > 0) {
  395. $('.product-row').first().remove();
  396. }
  397. // 添加默认的产品行
  398. addEmptyProductRow();
  399. updateNoProductsMessage();
  400. // 添加产品行按钮点击事件
  401. $('#add-product-btn').on('click', function() {
  402. addEmptyProductRow();
  403. updateNoProductsMessage();
  404. });
  405. // 删除产品行
  406. $(document).on('click', '.delete-product', function() {
  407. if ($('.product-row').length > 1) {
  408. $(this).closest('.product-row').remove();
  409. reindexProductRows();
  410. calculateOrderTotal();
  411. updateNoProductsMessage();
  412. } else {
  413. // 如果只剩最后一个产品行,则清空它而不是删除
  414. $(this).closest('.product-row').remove();
  415. updateNoProductsMessage();
  416. calculateOrderTotal(); // 确保在删除最后一个产品时也更新总额
  417. }
  418. });
  419. // 客户搜索功能
  420. var customerSearchTimeout = null;
  421. var customerIsComposing = false;
  422. // 监听输入法组合事件
  423. $(document).on('compositionstart', '.customer-search', function() {
  424. customerIsComposing = true;
  425. });
  426. $(document).on('compositionend', '.customer-search', function() {
  427. customerIsComposing = false;
  428. $(this).trigger('input'); // 手动触发一次input事件
  429. });
  430. // 客户搜索输入处理
  431. $(document).on('input', '#customer_search', function() {
  432. // 如果是输入法正在组合中文,不处理
  433. if (customerIsComposing) return;
  434. var $this = $(this);
  435. var searchTerm = $this.val().trim();
  436. var customerDropdown = $('#customer_dropdown');
  437. // 清除之前的超时
  438. clearTimeout(customerSearchTimeout);
  439. // 隐藏之前的结果
  440. customerDropdown.hide().empty();
  441. // 清除之前的选择
  442. $('#customer_id').val('0');
  443. $('#customer_selected').hide();
  444. // 如果搜索词少于1个字符,不执行搜索
  445. if (searchTerm.length < 1) {
  446. return;
  447. }
  448. // 设置一个300毫秒的超时,以减少请求数量
  449. customerSearchTimeout = setTimeout(function() {
  450. $.ajax({
  451. url: 'get_customer_search.php',
  452. type: 'GET',
  453. data: {search: searchTerm},
  454. dataType: 'json',
  455. success: function(data) {
  456. customerDropdown.empty();
  457. if (data && data.customers && data.customers.length > 0) {
  458. $.each(data.customers, function(i, customer) {
  459. var displayText = customer.cs_company;
  460. if (customer.cs_code) {
  461. displayText = customer.cs_code + ' - ' + displayText;
  462. }
  463. var item = $('<div class="customer-item"></div>')
  464. .attr('data-id', customer.id)
  465. .attr('data-company', customer.cs_company)
  466. .attr('data-display', displayText)
  467. .text(displayText);
  468. customerDropdown.append(item);
  469. });
  470. customerDropdown.show();
  471. }
  472. },
  473. error: function() {
  474. console.log('搜索客户失败,请重试');
  475. }
  476. });
  477. }, 300);
  478. });
  479. // 点击选择客户
  480. $(document).on('click', '.customer-item', function() {
  481. var $this = $(this);
  482. var customerId = $this.data('id');
  483. var customerName = $this.data('company');
  484. var displayText = $this.data('display');
  485. // 设置选中的客户ID和名称
  486. $('#customer_id').val(customerId);
  487. $('#customer_search').hide();
  488. $('#customer_selected').text(displayText).append('<span class="customer-clear-btn" data-type="customer">X</span>').show();
  489. // 添加标题属性,便于查看完整信息
  490. $('#customer_selected').attr('title', displayText);
  491. // 隐藏下拉菜单
  492. $('#customer_dropdown').hide();
  493. // 加载客户联系人
  494. loadCustomerContacts(customerId);
  495. });
  496. // 点击X按钮清除选择的客户
  497. $(document).on('click', '.customer-clear-btn', function(e) {
  498. e.stopPropagation();
  499. // 显示搜索框,隐藏已选信息
  500. $('#customer_search').val('').show();
  501. $('#customer_selected').hide();
  502. // 清空客户ID和联系人ID
  503. $('#customer_id').val('0');
  504. $('#contact_id').val('');
  505. });
  506. // 点击其他地方隐藏下拉列表
  507. $(document).on('click', function(e) {
  508. if (!$(e.target).closest('.customer-search-container').length) {
  509. $('#customer_dropdown').hide();
  510. }
  511. });
  512. // 产品搜索框聚焦时显示搜索提示
  513. $(document).on('focus', '.product-search', function() {
  514. // 隐藏所有已打开的产品搜索列表
  515. $('.productlist').hide();
  516. // 当前搜索框的值
  517. var searchTerm = $(this).val().trim();
  518. if (searchTerm.length >= 2) {
  519. // 找到当前行的产品列表并显示
  520. $(this).siblings('.productlist').show();
  521. }
  522. });
  523. // 产品搜索功能 - 行内搜索
  524. var productSearchTimeouts = {};
  525. var isComposing = false;
  526. // 监听输入法组合事件
  527. $(document).on('compositionstart', '.product-search', function() {
  528. isComposing = true;
  529. });
  530. $(document).on('compositionend', '.product-search', function() {
  531. isComposing = false;
  532. $(this).trigger('input'); // 手动触发一次input事件
  533. });
  534. $(document).on('input', '.product-search', function() {
  535. // 如果是输入法正在组合中文,不处理
  536. if (isComposing) return;
  537. var $this = $(this);
  538. var rowIndex = $this.closest('.product-row').data('index');
  539. var searchTerm = $this.val().trim();
  540. var productList = $this.siblings('.productlist');
  541. // 清除之前的超时
  542. clearTimeout(productSearchTimeouts[rowIndex]);
  543. // 隐藏之前的结果
  544. productList.hide();
  545. // 如果搜索词少于2个字符,不执行搜索
  546. if (searchTerm.length < 1) {
  547. return;
  548. }
  549. console.warn(searchTerm);
  550. // 设置一个300毫秒的超时,以减少请求数量
  551. productSearchTimeouts[rowIndex] = setTimeout(function() {
  552. $.ajax({
  553. url: 'get_product_info.php',
  554. type: 'GET',
  555. data: {search: searchTerm},
  556. dataType: 'json',
  557. success: function(data) {
  558. var ul = productList.find('ul');
  559. ul.empty();
  560. if (data && data.products && data.products.length > 0) {
  561. $.each(data.products, function(i, product) {
  562. ul.append('<li data-id="' + product.id + '">' +
  563. product.ProductName +
  564. (product.category_name ? ' <span class="category-tag">(' + product.category_name + ')</span>' : '') +
  565. '</li>');
  566. });
  567. productList.show();
  568. }
  569. },
  570. error: function() {
  571. console.log('搜索产品失败,请重试');
  572. }
  573. });
  574. }, 300);
  575. });
  576. // 点击选择产品 - 行内搜索结果
  577. $(document).on('click', '.productlist li', function() {
  578. var $this = $(this);
  579. var productId = $this.data('id');
  580. var productName = $this.text(); // 这会包含分类名,需要清理
  581. var categoryTag = $this.find('.category-tag').text();
  582. var row = $this.closest('.product-row');
  583. // 检查是否已存在相同的产品
  584. var isDuplicate = false;
  585. $('.product-id-input').not(row.find('.product-id-input')).each(function() {
  586. if ($(this).val() == productId) {
  587. isDuplicate = true;
  588. return false; // 跳出循环
  589. }
  590. });
  591. if (isDuplicate) {
  592. alert('该产品已添加,不能添加相同的产品');
  593. return;
  594. }
  595. // 清理产品名称,移除分类信息
  596. if (categoryTag) {
  597. productName = productName.replace(categoryTag, '').trim();
  598. }
  599. // 设置产品ID和名称
  600. row.find('.product-id-input').val(productId);
  601. row.find('.product-search').hide();
  602. // 显示包含分类的完整产品信息
  603. var displayName = productName;
  604. if (categoryTag) {
  605. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  606. }
  607. row.find('.selected-product-info').html(displayName).show();
  608. // 隐藏产品搜索结果
  609. row.find('.productlist').hide();
  610. // 获取产品单位信息
  611. getProductSpecifications(productId, row);
  612. });
  613. // 点击其他地方隐藏下拉列表
  614. $(document).on('click', function(e) {
  615. if (!$(e.target).closest('.product-search').length && !$(e.target).closest('.productlist').length) {
  616. $('.productlist').hide();
  617. }
  618. if (!$(e.target).closest('.customerinput').length) {
  619. $('.customerlist').hide();
  620. }
  621. });
  622. // 点击已选产品名显示的标签时,切换回搜索模式
  623. $(document).on('click', '.selected-product-info', function() {
  624. var row = $(this).closest('.product-row');
  625. var productId = row.find('.product-id-input').val();
  626. // 只有当已经选择了产品时才允许重新选择
  627. if (productId) {
  628. if (confirm('确定要重新选择产品吗?这将清除当前选择的产品信息。')) {
  629. // 清空产品ID
  630. row.find('.product-id-input').val('');
  631. // 隐藏产品信息,显示搜索框
  632. $(this).hide();
  633. row.find('.product-search').val('').show();
  634. // 清除单位信息
  635. row.find('.unit-input').val('');
  636. row.find('.unit-label').text('');
  637. // 清除总价信息并重新计算总额
  638. row.find('.total-price-input').val('0.00');
  639. calculateOrderTotal();
  640. }
  641. }
  642. });
  643. });
  644. function addEmptyProductRow() {
  645. var html = `
  646. <div class="product-row" data-index="${productIndex}">
  647. <span class="delete-product">×</span>
  648. <div class="row-section product-info">
  649. <div class="row-section-label"><span>产品</span></div>
  650. <input type="hidden" name="items[${productIndex}][product_id]" class="product-id-input" value="">
  651. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px;">
  652. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  653. <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
  654. </div>
  655. <div class="row-section product-quantity">
  656. <div class="row-section-label"><span>数量</span></div>
  657. <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input">
  658. </div>
  659. <div class="row-section product-unit">
  660. <div class="row-section-label"><span>单位</span></div>
  661. <span class="unit-label" style="display: inline-block; padding: 2px 5px; min-width: 30px;"></span>
  662. <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
  663. </div>
  664. <div class="row-section product-total">
  665. <div class="row-section-label"><span>总价</span></div>
  666. <input type="number" step="0.01" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input" placeholder="输入总价" onchange="calculateOrderTotal()">
  667. </div>
  668. </div>
  669. `;
  670. $('#product-container').append(html);
  671. productIndex++;
  672. return productIndex - 1; // 返回新添加行的索引
  673. }
  674. function getProductSpecifications(productId, row) {
  675. if (!productId) return;
  676. $.ajax({
  677. url: 'get_product_info.php',
  678. type: 'GET',
  679. data: {product_id: productId},
  680. dataType: 'json',
  681. success: function(data) {
  682. if (data && data.product) {
  683. // 设置单位信息
  684. if (data.product.unit) {
  685. row.find('.unit-input').val(data.product.unit);
  686. row.find('.unit-label').text(data.product.unit);
  687. }
  688. } else {
  689. alert('获取产品信息失败');
  690. // 重置产品选择
  691. row.find('.product-id-input').val('');
  692. row.find('.selected-product-info').hide();
  693. row.find('.product-search').val('').show();
  694. }
  695. },
  696. error: function() {
  697. alert('获取产品信息失败,请重试');
  698. // 重置产品选择
  699. row.find('.product-id-input').val('');
  700. row.find('.selected-product-info').hide();
  701. row.find('.product-search').val('').show();
  702. }
  703. });
  704. }
  705. function reindexProductRows() {
  706. $('.product-row').each(function(index) {
  707. $(this).attr('data-index', index);
  708. $(this).find('select, input').each(function() {
  709. var name = $(this).attr('name');
  710. if (name) {
  711. name = name.replace(/items\[\d+\]/, 'items[' + index + ']');
  712. $(this).attr('name', name);
  713. }
  714. });
  715. });
  716. productIndex = $('.product-row').length;
  717. }
  718. function calculateOrderTotal() {
  719. var total = 0;
  720. $('.total-price-input').each(function() {
  721. total += parseFloat($(this).val()) || 0;
  722. });
  723. // 更新总额和隐藏的小计字段
  724. $('#total-amount').text(total.toFixed(2));
  725. $('#total-amount-input').val(total.toFixed(2));
  726. $('#subtotal-input').val(total.toFixed(2)); // 为兼容性保留
  727. }
  728. function loadCustomerContacts(customerId) {
  729. if (customerId) {
  730. $.ajax({
  731. url: 'get_customer_contacts.php',
  732. type: 'GET',
  733. data: {customer_id: customerId},
  734. dataType: 'json',
  735. success: function(data) {
  736. // 不自动选择第一个联系人,让字段为空
  737. $('#contact_id').val('');
  738. }
  739. });
  740. } else {
  741. $('#contact_id').val('');
  742. }
  743. }
  744. function validateOrderForm() {
  745. var orderCode = $('#order_code').val();
  746. var customerId = $('#customer_id').val();
  747. var customerName = $('#customer_search').val();
  748. var hasProducts = false;
  749. var allTotalPricesValid = true;
  750. var firstInvalidField = null;
  751. // 检查是否有产品行
  752. if ($('.product-row').length === 0) {
  753. alert('请至少添加一个产品');
  754. $('#add-product-btn').focus();
  755. return false;
  756. }
  757. $('.product-row').each(function() {
  758. var productId = $(this).find('.product-id-input').val();
  759. var totalPriceInput = $(this).find('.total-price-input');
  760. var totalPrice = parseFloat(totalPriceInput.val()) || 0;
  761. var productSearch = $(this).find('.product-search');
  762. // 检查产品是否已选择
  763. if (!productId) {
  764. if (!firstInvalidField) {
  765. firstInvalidField = productSearch;
  766. }
  767. return true; // continue
  768. }
  769. hasProducts = true;
  770. // 检查总价是否有效
  771. if (totalPrice <= 0) {
  772. allTotalPricesValid = false;
  773. if (!firstInvalidField) {
  774. firstInvalidField = totalPriceInput;
  775. }
  776. }
  777. });
  778. if (!orderCode) {
  779. alert('销售订单号不能为空');
  780. $('#order_code').focus();
  781. return false;
  782. }
  783. if (!customerId || customerId == '0') {
  784. alert('请选择客户');
  785. $('#customer_search').focus();
  786. return false;
  787. }
  788. // 只有当客户ID为0时才检查客户名称
  789. if (customerId == '0' && !customerName) {
  790. alert('请输入并选择有效的客户');
  791. $('#customer_search').focus();
  792. return false;
  793. }
  794. if (!hasProducts) {
  795. alert('请至少添加一个有效的产品');
  796. if (firstInvalidField) {
  797. firstInvalidField.focus();
  798. } else {
  799. $('#add-product-btn').focus();
  800. }
  801. return false;
  802. }
  803. if (!allTotalPricesValid) {
  804. alert('请为所有产品输入有效的总价');
  805. if (firstInvalidField) {
  806. firstInvalidField.focus();
  807. }
  808. return false;
  809. }
  810. return true;
  811. }
  812. function updateNoProductsMessage() {
  813. if ($('.product-row').length > 0) {
  814. $('#no-products-message').hide();
  815. } else {
  816. $('#no-products-message').show();
  817. }
  818. }
  819. </script>
  820. </div>
  821. </body>
  822. </html>