order_edit.php 51 KB

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