ci-plus 1.6.4 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -2
- package/package.json +2 -3
- package/src/identificationCard/identificationCard.vue +105 -172
- package/src/identificationCard/identificationCard1.5.6.vue +2158 -0
- package/src/utils/ajaxBox.ts +143 -5
- package/src/utils/cardPrint.ts +1002 -1077
- package/src/utils/{cardPrint1.5.4.ts → cardPrint1.1.0.ts} +4 -4
- package/src/utils/{cardPrint1.5.5.ts → cardPrint1.2.0.ts} +7 -7
- package/src/utils/cardPrint1.3.1.ts +1184 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module cardPrint
|
|
3
3
|
* @author : 卖女孩的小火柴
|
|
4
4
|
* !description : 标识卡打印
|
|
5
|
-
* @version : 1.
|
|
5
|
+
* @version : 1.2.0
|
|
6
6
|
* @since : 创建时间 2024-03-15 15:16:12
|
|
7
7
|
*/
|
|
8
8
|
// import { scan_card_code_get } from '@/api/InventoryBatch'
|
|
@@ -125,7 +125,7 @@ export const cardPrint = (
|
|
|
125
125
|
r10c1: '抽检结果', // (无)
|
|
126
126
|
r10c2: '',
|
|
127
127
|
r10c3: '单重',
|
|
128
|
-
r10c4: item.piece_weight,
|
|
128
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
129
129
|
r11c1: '本箱数量',
|
|
130
130
|
r11c2: item.current_inventory,
|
|
131
131
|
r11c3: '抽检人员',
|
|
@@ -308,7 +308,7 @@ export const cardPrint = (
|
|
|
308
308
|
r10c1: '总箱数', // 建
|
|
309
309
|
r10c2: item.total_row,
|
|
310
310
|
r10c3: '单重',
|
|
311
|
-
r10c4: item.piece_weight,
|
|
311
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
312
312
|
r11c1: '责废总数',
|
|
313
313
|
r11c2: item.storage_scrap_count,
|
|
314
314
|
r11c3: '本批数量',
|
|
@@ -764,7 +764,7 @@ export const cardPrint = (
|
|
|
764
764
|
r10c1: '总箱数',
|
|
765
765
|
r10c2: item.total_row,
|
|
766
766
|
r10c3: '单重',
|
|
767
|
-
r10c4: item.piece_weight,
|
|
767
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
768
768
|
r11c1: '料废总数',
|
|
769
769
|
r11c2: item.storage_scrap_count,
|
|
770
770
|
r11c3: '本批数量',
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module cardPrint
|
|
3
3
|
* @author : 卖女孩的小火柴
|
|
4
4
|
* !description : 标识卡打印
|
|
5
|
-
* @version : 1.
|
|
5
|
+
* @version : 1.1.0
|
|
6
6
|
* @since : 创建时间 2024-03-15 15:16:12
|
|
7
7
|
* @update : 2024-11-5 13:26:12更新标识卡模板,删除为尚工厂的一些字段
|
|
8
8
|
*/
|
|
@@ -147,9 +147,9 @@ export const cardPrint = (
|
|
|
147
147
|
r9c3: '收货人员',
|
|
148
148
|
r9c4: item.center_data[0]?.consignee,
|
|
149
149
|
r10c1: '净重',
|
|
150
|
-
r10c2: item.net_weight,
|
|
150
|
+
r10c2: item.net_weight + item.net_weight_unit,
|
|
151
151
|
r10c3: '单重',
|
|
152
|
-
r10c4: item.piece_weight,
|
|
152
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
153
153
|
r11c1: '产线',
|
|
154
154
|
r11c2: item.line_name,
|
|
155
155
|
r11c3: '工单号',
|
|
@@ -383,7 +383,7 @@ export const cardPrint = (
|
|
|
383
383
|
r10c1: '责废总数', // 建
|
|
384
384
|
r10c2: item.storage_scrap_count,
|
|
385
385
|
r10c3: '单重',
|
|
386
|
-
r10c4: item.piece_weight,
|
|
386
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
387
387
|
r11c1: '工序',
|
|
388
388
|
r11c2: item.process_name,
|
|
389
389
|
r11c3: '本批数量',
|
|
@@ -855,7 +855,7 @@ export const cardPrint = (
|
|
|
855
855
|
r10c1: '料废总数',
|
|
856
856
|
r10c2: item.storage_scrap_count,
|
|
857
857
|
r10c3: '单重',
|
|
858
|
-
r10c4: item.piece_weight,
|
|
858
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
859
859
|
r11c1: '工序',
|
|
860
860
|
r11c2: item.process_name,
|
|
861
861
|
r11c3: '本批数量',
|
|
@@ -1007,11 +1007,11 @@ export const cardPrint = (
|
|
|
1007
1007
|
r10c1: '本箱数量',
|
|
1008
1008
|
r10c2: item.current_inventory,
|
|
1009
1009
|
r10c3: '单重',
|
|
1010
|
-
r10c4: item.piece_weight,
|
|
1010
|
+
r10c4: item.piece_weight + item.piece_weight_unit,
|
|
1011
1011
|
r11c1: '总箱数',
|
|
1012
1012
|
r11c2: item.total_row,
|
|
1013
1013
|
r11c3: '净重',
|
|
1014
|
-
r11c4: item.net_weight,
|
|
1014
|
+
r11c4: item.net_weight + item.net_weight_unit,
|
|
1015
1015
|
r12c1: '包装方式',
|
|
1016
1016
|
r12c2: item.packaging_specifications_name,
|
|
1017
1017
|
r12c3: '生产日期',
|