order_add.php 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  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. </style>
  241. </head>
  242. <body>
  243. <div id="man_zone">
  244. <form name="form1" id="form1" method="post" action="order_save.php?<?= $hrefstr ?>" onsubmit="return validateOrderForm()">
  245. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  246. <tbody>
  247. <tr>
  248. <th width="8%">订单编号</th>
  249. <td><input type="text" id="order_code" name="order_code" value="" class="txt1" placeholder="请输入订单编号" /></td>
  250. </tr>
  251. <tr>
  252. <th width="8%">客户选择</th>
  253. <td>
  254. <?php if ($customerInfo): ?>
  255. <!-- 已有客户ID,只显示客户信息 -->
  256. <div style="display: inline-block; width: 60%;">
  257. <input type="hidden" name="customer_id" id="customer_id" value="<?= $customerId ?>">
  258. <!-- 联系人字段设为空 -->
  259. <input type="hidden" name="contact_id" id="contact_id" value="">
  260. <div class="selected-customer-info" style="font-weight: bold; padding: 8px 0; border: 1px solid #ddd; background-color: #f9f9f9; padding-left: 10px;">
  261. <?= htmlspecialcharsFix($customerInfo['cs_code'] . ' - ' . $customerInfo['cs_company']) ?>
  262. </div>
  263. </div>
  264. <?php else: ?>
  265. <!-- 无客户ID,显示搜索框 -->
  266. <div style="display: inline-block; width: 60%;" class="customerinput">
  267. <input type="text" class="customer-search fastsearch" placeholder="输入客户名称搜索..." style="width: 100%;">
  268. <div class="customerlist" style="display: none; position: absolute; background: white; border: 1px solid #ccc; max-height: 200px; overflow-y: auto; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2);">
  269. <ul style="list-style: none; padding: 0; margin: 0;"></ul>
  270. </div>
  271. <input type="hidden" name="customer_id" id="customer_id" value="0">
  272. <input type="hidden" name="contact_id" id="contact_id" value="">
  273. <div class="selected-customer-info" style="margin-top: 5px; font-weight: bold;"></div>
  274. </div>
  275. <?php endif; ?>
  276. </td>
  277. </tr>
  278. <tr>
  279. <th width="8%">订单日期</th>
  280. <td><input type="date" id="order_date" name="order_date" value="<?= date('Y-m-d') ?>" class="txt1" /></td>
  281. </tr>
  282. <tr>
  283. <th width="8%" valign="top">产品列表</th>
  284. <td>
  285. <button type="button" id="add-product-btn" class="add-product-btn">添加产品</button>
  286. <div class="product-list-header" style="display: flex; background-color: #eee; padding: 8px 15px; margin-bottom: 10px; border-radius: 4px; font-weight: bold; color: #555; font-size: 13px; gap: 8px;">
  287. <div style="flex: 2; min-width: 200px;">产品</div>
  288. <div style="flex: 2; min-width: 200px;">规格</div>
  289. <div style="flex: 1; min-width: 80px;">数量</div>
  290. <div style="flex: 0.5; min-width: 60px;">单位</div>
  291. <div style="flex: 1; min-width: 100px;">单价</div>
  292. <div style="flex: 1; min-width: 100px;">总价</div>
  293. </div>
  294. <div id="product-container">
  295. <!-- 产品行将通过添加按钮添加 -->
  296. <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;">
  297. <i class="fa fa-info-circle"></i> 请点击"添加产品"按钮添加产品
  298. </div>
  299. </div>
  300. <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);">
  301. <div style="display: flex; justify-content: flex-end; align-items: center;">
  302. <label style="font-size: 16px; margin-right: 10px;">订单总额:</label>
  303. <span id="total-amount" style="font-size: 18px; font-weight: bold; color: #e74c3c;">0.00</span>
  304. <input type="hidden" name="total_amount" id="total-amount-input" value="0.00">
  305. <input type="hidden" name="subtotal" id="subtotal-input" value="0.00">
  306. </div>
  307. </div>
  308. </td>
  309. </tr>
  310. <tr>
  311. <th width="8%">订单备注</th>
  312. <td>
  313. <textarea name="notes" rows="3" style="width: 90%;"></textarea>
  314. </td>
  315. </tr>
  316. <tr>
  317. <th></th>
  318. <td>
  319. <input type="submit" name="save" value="保存订单" class="btn1">
  320. <input type="button" value="返回" class="btn1" onClick="location.href='order.php?<?= $hrefstr ?>'" />
  321. </td>
  322. </tr>
  323. </tbody>
  324. </table>
  325. </form>
  326. <script>
  327. var productIndex = 1;
  328. $(document).ready(function() {
  329. // 初始化计算
  330. calculateOrderTotal();
  331. // 移除第一个默认产品行(如果不需要的话)
  332. if ($('.product-row').length > 0) {
  333. $('.product-row').first().remove();
  334. }
  335. // 添加默认的产品行
  336. addEmptyProductRow();
  337. updateNoProductsMessage();
  338. // 添加产品行按钮点击事件
  339. $('#add-product-btn').on('click', function() {
  340. addEmptyProductRow();
  341. updateNoProductsMessage();
  342. });
  343. // 删除产品行
  344. $(document).on('click', '.delete-product', function() {
  345. if ($('.product-row').length > 1) {
  346. $(this).closest('.product-row').remove();
  347. reindexProductRows();
  348. calculateOrderTotal();
  349. updateNoProductsMessage();
  350. } else {
  351. // 如果只剩最后一个产品行,则清空它而不是删除
  352. $(this).closest('.product-row').remove();
  353. updateNoProductsMessage();
  354. calculateOrderTotal(); // 确保在删除最后一个产品时也更新总额
  355. }
  356. });
  357. // 客户搜索功能
  358. var customerSearchTimeout = null;
  359. $(document).on('keyup', '.customer-search', function() {
  360. var $this = $(this);
  361. var searchTerm = $this.val().trim();
  362. var customerList = $('.customerlist');
  363. // 清除之前的超时
  364. clearTimeout(customerSearchTimeout);
  365. // 隐藏之前的结果
  366. customerList.hide();
  367. // 如果搜索词少于2个字符,不执行搜索
  368. if (searchTerm.length < 2) {
  369. return;
  370. }
  371. // 设置一个300毫秒的超时,以减少请求数量
  372. customerSearchTimeout = setTimeout(function() {
  373. $.ajax({
  374. url: 'get_customer_search.php',
  375. type: 'GET',
  376. data: {search: searchTerm},
  377. dataType: 'json',
  378. success: function(data) {
  379. var ul = customerList.find('ul');
  380. ul.empty();
  381. if (data && data.customers && data.customers.length > 0) {
  382. $.each(data.customers, function(i, customer) {
  383. var displayText = customer.cs_company;
  384. if (customer.cs_code) {
  385. displayText = customer.cs_code + ' - ' + displayText;
  386. }
  387. ul.append('<li data-id="' + customer.id + '" data-code="' + (customer.cs_code || '') + '">' +
  388. displayText + '</li>');
  389. });
  390. customerList.show();
  391. }
  392. },
  393. error: function() {
  394. console.log('搜索客户失败,请重试');
  395. }
  396. });
  397. }, 300);
  398. });
  399. // 点击选择客户
  400. $(document).on('click', '.customerlist li', function() {
  401. var $this = $(this);
  402. var customerId = $this.data('id');
  403. var customerName = $this.text();
  404. var customerCode = $this.data('code') || '';
  405. // 设置选中的客户ID和名称
  406. $('#customer_id').val(customerId);
  407. $('.customer-search').val(customerName);
  408. $('.selected-customer-info').text(customerName);
  409. $('.customerlist').hide();
  410. // 加载客户联系人
  411. loadCustomerContacts(customerId);
  412. });
  413. // 产品搜索框聚焦时显示搜索提示
  414. $(document).on('focus', '.product-search', function() {
  415. // 隐藏所有已打开的产品搜索列表
  416. $('.productlist').hide();
  417. // 当前搜索框的值
  418. var searchTerm = $(this).val().trim();
  419. if (searchTerm.length >= 2) {
  420. // 找到当前行的产品列表并显示
  421. $(this).siblings('.productlist').show();
  422. }
  423. });
  424. // 产品搜索功能 - 行内搜索
  425. var productSearchTimeouts = {};
  426. $(document).on('keyup', '.product-search', function() {
  427. var $this = $(this);
  428. var rowIndex = $this.closest('.product-row').data('index');
  429. var searchTerm = $this.val().trim();
  430. var productList = $this.siblings('.productlist');
  431. // 清除之前的超时
  432. clearTimeout(productSearchTimeouts[rowIndex]);
  433. // 隐藏之前的结果
  434. productList.hide();
  435. // 如果搜索词少于2个字符,不执行搜索
  436. if (searchTerm.length < 2) {
  437. return;
  438. }
  439. // 设置一个300毫秒的超时,以减少请求数量
  440. productSearchTimeouts[rowIndex] = setTimeout(function() {
  441. $.ajax({
  442. url: 'get_product_info.php',
  443. type: 'GET',
  444. data: {search: searchTerm},
  445. dataType: 'json',
  446. success: function(data) {
  447. var ul = productList.find('ul');
  448. ul.empty();
  449. if (data && data.products && data.products.length > 0) {
  450. $.each(data.products, function(i, product) {
  451. ul.append('<li data-id="' + product.id + '">' +
  452. product.ProductName +
  453. (product.category_name ? ' <span class="category-tag">(' + product.category_name + ')</span>' : '') +
  454. '</li>');
  455. });
  456. productList.show();
  457. }
  458. },
  459. error: function() {
  460. console.log('搜索产品失败,请重试');
  461. }
  462. });
  463. }, 300);
  464. });
  465. // 点击选择产品 - 行内搜索结果
  466. $(document).on('click', '.productlist li', function() {
  467. var $this = $(this);
  468. var productId = $this.data('id');
  469. var productName = $this.text(); // 这会包含分类名,需要清理
  470. var categoryTag = $this.find('.category-tag').text();
  471. var row = $this.closest('.product-row');
  472. // 清理产品名称,移除分类信息
  473. if (categoryTag) {
  474. productName = productName.replace(categoryTag, '').trim();
  475. }
  476. // 设置产品ID和名称
  477. row.find('.product-id-input').val(productId);
  478. row.find('.product-search').hide();
  479. // 显示包含分类的完整产品信息
  480. var displayName = productName;
  481. if (categoryTag) {
  482. displayName += ' <span class="category-tag">' + categoryTag + '</span>';
  483. }
  484. row.find('.selected-product-info').html(displayName).show();
  485. // 隐藏产品搜索结果
  486. row.find('.productlist').hide();
  487. // 获取产品规格信息
  488. getProductSpecifications(productId, row);
  489. });
  490. // 规格选择改变事件
  491. $(document).on('change', '.spec-select', function() {
  492. var $this = $(this);
  493. var row = $this.closest('.product-row');
  494. var specId = $this.val();
  495. var specData = $this.find('option:selected').data();
  496. if (specId) {
  497. // 检查是否已存在相同的产品规格组合
  498. var isDuplicate = false;
  499. $('.spec-select').not($this).each(function() {
  500. if ($(this).val() == specId) {
  501. isDuplicate = true;
  502. return false; // 跳出循环
  503. }
  504. });
  505. if (isDuplicate) {
  506. alert('该产品规格已添加,不能重复添加');
  507. $this.val(''); // 重置选择
  508. return;
  509. }
  510. // 设置规格ID到隐藏字段
  511. row.find('.spec-id-input').val(specId);
  512. // 不再自动设置价格信息
  513. // if (specData.price) {
  514. // row.find('.price-input').val(specData.price);
  515. // } else {
  516. // row.find('.price-input').val('');
  517. // }
  518. // 存储规格价格作为最低价格限制
  519. var minPrice = specData.price || 0;
  520. var priceInput = row.find('.price-input');
  521. priceInput.attr('data-min-price', minPrice);
  522. if (minPrice > 0) {
  523. priceInput.attr('placeholder', '输入单价');
  524. } else {
  525. priceInput.attr('placeholder', '输入单价');
  526. }
  527. // 设置最小订购数量
  528. var minQty = specData.minQty || 1;
  529. var qtyInput = row.find('.quantity-input');
  530. if (parseInt(qtyInput.val()) < minQty) {
  531. qtyInput.val(minQty);
  532. }
  533. qtyInput.attr('min', minQty);
  534. // 更新规格信息显示
  535. // var specInfoHtml = '';
  536. // if (specData.code) {
  537. // specInfoHtml += '<span>编码: ' + specData.code + '</span>';
  538. // }
  539. // if (specData.minQty > 1) {
  540. // specInfoHtml += ' <span>最小订购量: ' + specData.minQty + '</span>';
  541. // }
  542. // if (specData.price) {
  543. // specInfoHtml += ' <span>参考价格: ¥' + specData.price + '</span>';
  544. // }
  545. // row.find('.spec-info').html(specInfoHtml);
  546. // 重新计算总价
  547. calculateItemTotal(row.find('.price-input')[0]);
  548. } else {
  549. // 清除规格相关信息
  550. row.find('.spec-id-input').val('');
  551. // 不再清除价格
  552. // row.find('.price-input').val('');
  553. row.find('.price-input').attr('data-min-price', '0').attr('placeholder', '输入单价');
  554. row.find('.spec-info').html('');
  555. calculateItemTotal(row.find('.price-input')[0]);
  556. }
  557. });
  558. // 点击其他地方隐藏下拉列表
  559. $(document).on('click', function(e) {
  560. if (!$(e.target).closest('.product-search').length && !$(e.target).closest('.productlist').length) {
  561. $('.productlist').hide();
  562. }
  563. if (!$(e.target).closest('.customerinput').length) {
  564. $('.customerlist').hide();
  565. }
  566. });
  567. // 点击已选产品名显示的标签时,切换回搜索模式
  568. $(document).on('click', '.selected-product-info', function() {
  569. var row = $(this).closest('.product-row');
  570. var productId = row.find('.product-id-input').val();
  571. // 只有当已经选择了产品时才允许重新选择
  572. if (productId) {
  573. if (confirm('确定要重新选择产品吗?这将清除当前选择的产品及其规格信息。')) {
  574. // 清空产品ID和选择的规格
  575. row.find('.product-id-input').val('');
  576. row.find('.spec-id-input').val('');
  577. // 隐藏产品信息,显示搜索框
  578. $(this).hide();
  579. row.find('.product-search').val('').show();
  580. // 隐藏并清空规格选择
  581. row.find('.spec-select').hide().empty();
  582. row.find('.spec-info').html('');
  583. // 清除单位信息
  584. row.find('.unit-input').val('');
  585. row.find('.unit-label').text('');
  586. // 清除价格信息并重新计算总额
  587. row.find('.price-input').val('');
  588. calculateItemTotal(row.find('.price-input')[0]);
  589. }
  590. }
  591. });
  592. });
  593. function addEmptyProductRow() {
  594. var html = `
  595. <div class="product-row" data-index="${productIndex}">
  596. <span class="delete-product">×</span>
  597. <div class="row-section product-info">
  598. <div class="row-section-label"><span>产品</span></div>
  599. <input type="hidden" name="items[${productIndex}][product_id]" class="product-id-input" value="">
  600. <input type="text" class="product-search" placeholder="输入产品名称搜索..." style="width: 100%; padding: 5px; border: 1px solid #ddd; border-radius: 4px;">
  601. <div class="productlist" style="width: 100%; max-height: 200px;"><ul></ul></div>
  602. <div class="selected-product-info" style="cursor: pointer; display: none;" title="点击重新选择产品"></div>
  603. </div>
  604. <div class="row-section product-spec">
  605. <div class="row-section-label"><span>规格</span></div>
  606. <input type="hidden" name="items[${productIndex}][spec_id]" class="spec-id-input" value="">
  607. <select class="spec-select" name="items[${productIndex}][spec_select]" style="display: none;">
  608. <option value="">请选择规格</option>
  609. </select>
  610. <div class="spec-info"></div>
  611. </div>
  612. <div class="row-section product-quantity">
  613. <div class="row-section-label"><span>数量</span></div>
  614. <input type="number" name="items[${productIndex}][quantity]" value="1" min="1" class="quantity-input" onchange="calculateItemTotal(this)">
  615. </div>
  616. <div class="row-section product-unit">
  617. <div class="row-section-label"><span>单位</span></div>
  618. <span class="unit-label" style="display: inline-block; padding: 2px 5px; min-width: 30px;"></span>
  619. <input type="hidden" name="items[${productIndex}][unit]" class="unit-input" value="">
  620. </div>
  621. <div class="row-section product-price">
  622. <div class="row-section-label"><span>单价</span></div>
  623. <input type="number" step="0.01" name="items[${productIndex}][unit_price]" value="" class="price-input" placeholder="输入单价" onchange="calculateItemTotal(this)">
  624. </div>
  625. <div class="row-section product-total">
  626. <div class="row-section-label"><span>总价</span></div>
  627. <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>
  628. <input type="hidden" name="items[${productIndex}][total_price]" value="0.00" class="total-price-input">
  629. </div>
  630. </div>
  631. `;
  632. $('#product-container').append(html);
  633. productIndex++;
  634. return productIndex - 1; // 返回新添加行的索引
  635. }
  636. function getProductSpecifications(productId, row) {
  637. if (!productId) return;
  638. $.ajax({
  639. url: 'get_product_info.php',
  640. type: 'GET',
  641. data: {product_id: productId},
  642. dataType: 'json',
  643. success: function(data) {
  644. if (data && data.product && data.specifications) {
  645. // 恢复设置单位信息
  646. if (data.product.unit) {
  647. row.find('.unit-input').val(data.product.unit);
  648. row.find('.unit-label').text(data.product.unit);
  649. }
  650. // 处理规格信息
  651. var specifications = data.specifications;
  652. if (specifications.length === 0) {
  653. alert('此产品没有规格信息,请添加规格后再选择');
  654. // 重置产品选择
  655. row.find('.product-id-input').val('');
  656. row.find('.selected-product-info').hide();
  657. row.find('.product-search').val('').show();
  658. return;
  659. }
  660. // 填充规格选择下拉框
  661. var specSelect = row.find('.spec-select');
  662. specSelect.empty();
  663. specSelect.append('<option value="">请选择规格</option>');
  664. $.each(specifications, function(i, spec) {
  665. var displayText = spec.spec_name + ': ' + spec.spec_value;
  666. if (spec.price) {
  667. displayText += ' (¥' + spec.price + ')';
  668. }
  669. var option = $('<option></option>')
  670. .attr('value', spec.id)
  671. .text(displayText)
  672. .data('price', spec.price)
  673. .data('minQty', spec.min_order_quantity)
  674. .data('code', spec.spec_code);
  675. specSelect.append(option);
  676. });
  677. // 显示规格选择下拉框
  678. specSelect.show();
  679. } else {
  680. alert('获取产品规格失败');
  681. // 重置产品选择
  682. row.find('.product-id-input').val('');
  683. row.find('.selected-product-info').hide();
  684. row.find('.product-search').val('').show();
  685. }
  686. },
  687. error: function() {
  688. alert('获取产品规格失败,请重试');
  689. // 重置产品选择
  690. row.find('.product-id-input').val('');
  691. row.find('.selected-product-info').hide();
  692. row.find('.product-search').val('').show();
  693. }
  694. });
  695. }
  696. function reindexProductRows() {
  697. $('.product-row').each(function(index) {
  698. $(this).attr('data-index', index);
  699. $(this).find('select, input').each(function() {
  700. var name = $(this).attr('name');
  701. if (name) {
  702. name = name.replace(/items\[\d+\]/, 'items[' + index + ']');
  703. $(this).attr('name', name);
  704. }
  705. });
  706. });
  707. productIndex = $('.product-row').length;
  708. }
  709. function calculateItemTotal(element) {
  710. var row = $(element).closest('.product-row');
  711. var quantity = parseInt(row.find('.quantity-input').val()) || 0;
  712. var priceInput = row.find('.price-input');
  713. var priceValue = priceInput.val().trim();
  714. var price = (priceValue === '') ? 0 : (parseFloat(priceValue) || 0);
  715. var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
  716. // 检查价格是否低于规格最低价
  717. if (price > 0 && minPrice > 0 && price < minPrice) {
  718. priceInput.css('color', 'red');
  719. } else {
  720. priceInput.css('color', '');
  721. }
  722. var total = quantity * price;
  723. if (total < 0) total = 0;
  724. // 更新显示元素和隐藏输入框
  725. row.find('.total-price-display').text(total.toFixed(2));
  726. row.find('.total-price-input').val(total.toFixed(2));
  727. calculateOrderTotal();
  728. }
  729. function calculateOrderTotal() {
  730. var total = 0;
  731. $('.total-price-input').each(function() {
  732. total += parseFloat($(this).val()) || 0;
  733. });
  734. // 更新总额和隐藏的小计字段
  735. $('#total-amount').text(total.toFixed(2));
  736. $('#total-amount-input').val(total.toFixed(2));
  737. $('#subtotal-input').val(total.toFixed(2)); // 为兼容性保留
  738. }
  739. function loadCustomerContacts(customerId) {
  740. if (customerId) {
  741. $.ajax({
  742. url: 'get_customer_contacts.php',
  743. type: 'GET',
  744. data: {customer_id: customerId},
  745. dataType: 'json',
  746. success: function(data) {
  747. // 不自动选择第一个联系人,让字段为空
  748. $('#contact_id').val('');
  749. }
  750. });
  751. } else {
  752. $('#contact_id').val('');
  753. }
  754. }
  755. function validateOrderForm() {
  756. var orderCode = $('#order_code').val();
  757. var customerId = $('#customer_id').val();
  758. var customerName = $('.customer-search').val();
  759. var hasProducts = false;
  760. var allSpecsSelected = true;
  761. var allPricesValid = true;
  762. var allPricesHighEnough = true;
  763. var firstInvalidField = null;
  764. // 检查是否有产品行
  765. if ($('.product-row').length === 0) {
  766. alert('请至少添加一个产品');
  767. $('#add-product-btn').focus();
  768. return false;
  769. }
  770. $('.product-row').each(function() {
  771. var productId = $(this).find('.product-id-input').val();
  772. var specId = $(this).find('.spec-id-input').val();
  773. var priceInput = $(this).find('.price-input');
  774. var priceValue = priceInput.val().trim();
  775. var price = parseFloat(priceValue) || 0;
  776. var minPrice = parseFloat(priceInput.attr('data-min-price')) || 0;
  777. var specSelect = $(this).find('.spec-select');
  778. var productSearch = $(this).find('.product-search');
  779. // 检查产品是否已选择
  780. if (!productId) {
  781. if (!firstInvalidField) {
  782. firstInvalidField = productSearch;
  783. }
  784. return true; // continue
  785. }
  786. hasProducts = true;
  787. // 检查规格是否已选择
  788. if (!specId && specSelect.is(':visible')) {
  789. allSpecsSelected = false;
  790. if (!firstInvalidField) {
  791. firstInvalidField = specSelect;
  792. }
  793. }
  794. // 检查单价是否有效
  795. if (priceValue === '' || isNaN(parseFloat(priceValue))) {
  796. allPricesValid = false;
  797. if (!firstInvalidField) {
  798. firstInvalidField = priceInput;
  799. }
  800. }
  801. // 检查单价是否大于等于规格价格
  802. if (minPrice > 0 && price < minPrice) {
  803. allPricesHighEnough = false;
  804. if (!firstInvalidField) {
  805. firstInvalidField = priceInput;
  806. }
  807. }
  808. });
  809. if (!orderCode) {
  810. alert('订单编号不能为空');
  811. $('#order_code').focus();
  812. return false;
  813. }
  814. if (!customerId || customerId == '0') {
  815. alert('请选择客户');
  816. $('.customer-search').focus();
  817. return false;
  818. }
  819. // 只有当客户ID为0时才检查客户名称
  820. if (customerId == '0' && !customerName) {
  821. alert('请输入并选择有效的客户');
  822. $('.customer-search').focus();
  823. return false;
  824. }
  825. if (!hasProducts) {
  826. alert('请至少添加一个有效的产品');
  827. if (firstInvalidField) {
  828. firstInvalidField.focus();
  829. } else {
  830. $('#add-product-btn').focus();
  831. }
  832. return false;
  833. }
  834. if (!allSpecsSelected) {
  835. alert('请为所有产品选择规格');
  836. if (firstInvalidField) {
  837. firstInvalidField.focus();
  838. }
  839. return false;
  840. }
  841. if (!allPricesValid) {
  842. alert('请为所有产品输入有效的单价');
  843. if (firstInvalidField) {
  844. firstInvalidField.focus();
  845. }
  846. return false;
  847. }
  848. if (!allPricesHighEnough) {
  849. alert('单价不能低于规格设定的参考价格');
  850. if (firstInvalidField) {
  851. firstInvalidField.focus();
  852. }
  853. return false;
  854. }
  855. return true;
  856. }
  857. function updateNoProductsMessage() {
  858. if ($('.product-row').length > 0) {
  859. $('#no-products-message').hide();
  860. } else {
  861. $('#no-products-message').show();
  862. }
  863. }
  864. </script>
  865. </div>
  866. </body>
  867. </html>