feat: 扫码与细码明细展示外部卷号
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
e7827c4714
commit
9fffe228d5
@ -48,6 +48,7 @@ export const FABRIC_INFO_FIELDS = [
|
||||
export const FINE_CODE_TABLE_COLUMNS = [
|
||||
{ label: '序号', key: 'seq', width: 80 },
|
||||
{ label: '卷号', key: 'roll_no', width: 110 },
|
||||
{ label: '外部卷号', key: 'extern_volume_number', width: 140 },
|
||||
{ label: '匹数', key: 'roll', width: 100 },
|
||||
{ label: '数量(重量)', key: 'weight', width: 140 },
|
||||
{ label: '条码', key: 'bar_code', width: 280 },
|
||||
@ -232,6 +233,7 @@ export function getEmptyScanDetail() {
|
||||
yarn_batch: '',
|
||||
machine_number: '',
|
||||
volume_number: '',
|
||||
extern_volume_number: '',
|
||||
grey_fabric_level_id: [],
|
||||
grey_fabric_level_name: '',
|
||||
weight: 0,
|
||||
@ -265,6 +267,9 @@ export function buildScanDetailFromOrderResponse(order) {
|
||||
yarn_batch: raw.yarn_batch || '',
|
||||
machine_number: raw.machine_number || '',
|
||||
volume_number: raw.volume_number || '',
|
||||
extern_volume_number: raw.extern_volume_number != null && raw.extern_volume_number !== ''
|
||||
? String(raw.extern_volume_number)
|
||||
: '',
|
||||
grey_fabric_level_id: raw.grey_fabric_level_id || [],
|
||||
grey_fabric_level_name: raw.grey_fabric_level_name || '',
|
||||
weight: 0,
|
||||
@ -316,6 +321,7 @@ export function buildScanDetailFromContext(context, order) {
|
||||
yarn_batch: item.yarn_batch || '',
|
||||
machine_number: item.machine_number || '',
|
||||
volume_number: fineCode.fabric_piece_code || fineCode.roll_no || fineCode.bar_code || '',
|
||||
extern_volume_number: fineCode.extern_volume_number || '',
|
||||
grey_fabric_level_name: item.grey_fabric_level_name || '',
|
||||
weight: getFineCodeDisplayWeight(fineCode),
|
||||
scanned_roll: Number(scannedRoll.toFixed(2)),
|
||||
@ -402,6 +408,9 @@ export function normalizeItem(item) {
|
||||
fine_codes: (item.item_fc_data || []).map((fc) => ({
|
||||
id: fc.id,
|
||||
roll_no: fc.volume_number || '',
|
||||
extern_volume_number: fc.extern_volume_number != null && fc.extern_volume_number !== ''
|
||||
? String(fc.extern_volume_number)
|
||||
: '',
|
||||
fabric_piece_code: fc.fabric_piece_code || '',
|
||||
bar_code: fc.fabric_piece_code || fc.bar_code || '',
|
||||
position: fc.position || '',
|
||||
@ -533,6 +542,7 @@ export function mapFineCodeTableRows(list, readonly) {
|
||||
return (list || []).map((item, index) => ({
|
||||
seq: index + 1,
|
||||
roll_no: item.roll_no || '-',
|
||||
extern_volume_number: item.extern_volume_number || '-',
|
||||
roll: item.roll != null && item.roll !== '' ? item.roll : '-',
|
||||
weight: item.weight != null && item.weight !== '' ? `${item.weight}` : '-',
|
||||
bar_code: item.bar_code || '-',
|
||||
|
||||
@ -55,6 +55,7 @@ export const STOCK_TABLE_COLUMNS = [
|
||||
export const WAREHOUSE_DETAIL_COLUMNS = [
|
||||
{ label: '序号', key: 'seq', width: 80 },
|
||||
{ label: '卷号', key: 'volume_number', width: 110 },
|
||||
{ label: '外部卷号', key: 'extern_volume_number', width: 140 },
|
||||
{ label: '匹数', key: 'roll', width: 100 },
|
||||
{ label: '数量(KG)', key: 'weight', width: 130 },
|
||||
{ label: '条码', key: 'bar_code', width: 280 },
|
||||
@ -244,6 +245,7 @@ export function mapWarehouseDetailRows(list = []) {
|
||||
return (list || []).map((item, index) => ({
|
||||
seq: index + 1,
|
||||
volume_number: item.volume_number || '-',
|
||||
extern_volume_number: item.extern_volume_number || '-',
|
||||
roll: item.num != null && item.num !== '' ? formatRoll(item.num) : '-',
|
||||
weight: item.weight != null && item.weight !== '' ? formatWeightKg(item.weight) : '-',
|
||||
bar_code: item.bar_code || item.fabric_piece_code || '-',
|
||||
|
||||
@ -142,6 +142,9 @@ export function normalizeFineCode(fc) {
|
||||
return {
|
||||
id: fc.id,
|
||||
volume_number: fc.volume_number != null && fc.volume_number !== '' ? String(fc.volume_number) : '',
|
||||
extern_volume_number: fc.extern_volume_number != null && fc.extern_volume_number !== ''
|
||||
? String(fc.extern_volume_number)
|
||||
: '',
|
||||
roll: formatRoll(fc.roll),
|
||||
weight: formatWeightKg(weightRaw),
|
||||
bar_code: barCode,
|
||||
@ -243,6 +246,7 @@ export function getEmptyScanDetail() {
|
||||
quote_order_no: '',
|
||||
dyelot_number: '',
|
||||
volume_number: '',
|
||||
extern_volume_number: '',
|
||||
product_code: '',
|
||||
product_color_code: '',
|
||||
order_roll: 0,
|
||||
@ -269,6 +273,9 @@ export function buildScanDetailFromScanResponse(res) {
|
||||
quote_order_no: res.quote_order_no || '',
|
||||
dyelot_number: res.dyelot_number || '',
|
||||
volume_number: res.volume_number != null && res.volume_number !== '' ? String(res.volume_number) : '',
|
||||
extern_volume_number: res.extern_volume_number != null && res.extern_volume_number !== ''
|
||||
? String(res.extern_volume_number)
|
||||
: '',
|
||||
product_code: res.product_code || '',
|
||||
product_color_code: res.product_color_code || '',
|
||||
order_roll: formatRoll(res.order_roll != null ? res.order_roll : res.total_roll),
|
||||
|
||||
@ -120,6 +120,9 @@ export function normalizeFineCode(fc) {
|
||||
return {
|
||||
id: fc.id,
|
||||
volume_number: fc.volume_number != null && fc.volume_number !== '' ? String(fc.volume_number) : '',
|
||||
extern_volume_number: fc.extern_volume_number != null && fc.extern_volume_number !== ''
|
||||
? String(fc.extern_volume_number)
|
||||
: '',
|
||||
roll: formatRoll(fc.roll),
|
||||
weight: formatWeightKg(weightRaw),
|
||||
bar_code: barCode,
|
||||
@ -218,6 +221,7 @@ export function getEmptyScanDetail() {
|
||||
quote_order_no: '',
|
||||
dyelot_number: '',
|
||||
volume_number: '',
|
||||
extern_volume_number: '',
|
||||
product_code: '',
|
||||
product_color_code: '',
|
||||
order_roll: 0,
|
||||
@ -234,6 +238,9 @@ export function buildScanDetailFromScanResponse(res) {
|
||||
quote_order_no: res.quote_order_no || '',
|
||||
dyelot_number: res.dyelot_number || '',
|
||||
volume_number: res.volume_number != null && res.volume_number !== '' ? String(res.volume_number) : '',
|
||||
extern_volume_number: res.extern_volume_number != null && res.extern_volume_number !== ''
|
||||
? String(res.extern_volume_number)
|
||||
: '',
|
||||
product_code: res.product_code || '',
|
||||
product_color_code: res.product_color_code || '',
|
||||
order_roll: formatRoll(res.order_roll != null ? res.order_roll : res.total_roll),
|
||||
|
||||
@ -112,6 +112,9 @@ export function normalizeFineCode(fc) {
|
||||
return {
|
||||
id: fc.id,
|
||||
volume_number: fc.volume_number != null && fc.volume_number !== '' ? String(fc.volume_number) : '',
|
||||
extern_volume_number: fc.extern_volume_number != null && fc.extern_volume_number !== ''
|
||||
? String(fc.extern_volume_number)
|
||||
: '',
|
||||
roll: formatRoll(fc.roll),
|
||||
weight: formatWeightKg(weightRaw),
|
||||
bar_code: fc.bar_code || '',
|
||||
@ -204,6 +207,7 @@ export function getEmptyScanDetail() {
|
||||
quote_order_no: '',
|
||||
dyelot_number: '',
|
||||
volume_number: '',
|
||||
extern_volume_number: '',
|
||||
product_code: '',
|
||||
product_color_code: '',
|
||||
order_roll: 0,
|
||||
@ -230,6 +234,9 @@ export function buildScanDetailFromScanResponse(res) {
|
||||
quote_order_no: res.quote_order_no || '',
|
||||
dyelot_number: res.dyelot_number || '',
|
||||
volume_number: res.volume_number != null && res.volume_number !== '' ? String(res.volume_number) : '',
|
||||
extern_volume_number: res.extern_volume_number != null && res.extern_volume_number !== ''
|
||||
? String(res.extern_volume_number)
|
||||
: '',
|
||||
product_code: res.product_code || '',
|
||||
product_color_code: res.product_color_code || '',
|
||||
order_roll: formatRoll(res.order_roll != null ? res.order_roll : res.total_roll),
|
||||
|
||||
@ -157,6 +157,9 @@ export function normalizeFineCode(fc) {
|
||||
return {
|
||||
id: fc.id,
|
||||
volume_number: fc.volume_number != null && fc.volume_number !== '' ? String(fc.volume_number) : '',
|
||||
extern_volume_number: fc.extern_volume_number != null && fc.extern_volume_number !== ''
|
||||
? String(fc.extern_volume_number)
|
||||
: '',
|
||||
roll: formatRoll(fc.roll),
|
||||
weight: formatWeightKg(weightRaw),
|
||||
bar_code: barCode,
|
||||
@ -259,6 +262,7 @@ export function getEmptyScanDetail() {
|
||||
quote_order_no: '',
|
||||
dyelot_number: '',
|
||||
volume_number: '',
|
||||
extern_volume_number: '',
|
||||
product_code: '',
|
||||
product_color_code: '',
|
||||
order_roll: 0,
|
||||
@ -285,6 +289,9 @@ export function buildScanDetailFromScanResponse(res) {
|
||||
quote_order_no: res.quote_order_no || '',
|
||||
dyelot_number: res.dyelot_number || '',
|
||||
volume_number: res.volume_number != null && res.volume_number !== '' ? String(res.volume_number) : '',
|
||||
extern_volume_number: res.extern_volume_number != null && res.extern_volume_number !== ''
|
||||
? String(res.extern_volume_number)
|
||||
: '',
|
||||
product_code: res.product_code || '',
|
||||
product_color_code: res.product_color_code || '',
|
||||
order_roll: formatRoll(res.order_roll != null ? res.order_roll : res.total_roll),
|
||||
|
||||
@ -46,6 +46,10 @@
|
||||
<text class="fabric-out-scanDetailValue">{{ detail.volume_number || '' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow">
|
||||
<text class="fabric-out-scanDetailLabel">外部卷号:</text>
|
||||
<text class="fabric-out-scanDetailValue">{{ detail.extern_volume_number || '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<view class="fabric-out-scanDetailCheck" @click="toggleGroup('grey_fabric_level_name')">
|
||||
<checkbox :checked="isGroupChecked('grey_fabric_level_name')" />
|
||||
|
||||
@ -83,6 +83,7 @@ import { buildItemGroups } from '@/common/storeGoodsProcessIn';
|
||||
|
||||
const FINE_COLUMNS = [
|
||||
{ label: '卷号', key: 'volume_number', width: 110 },
|
||||
{ label: '外部卷号', key: 'extern_volume_number', width: 140 },
|
||||
{ label: '匹数', key: 'roll', width: 100 },
|
||||
{ label: '数量', key: 'weight', width: 130 },
|
||||
{ label: '仓位', key: 'warehouse_bin_name', width: 140 },
|
||||
|
||||
@ -6,15 +6,19 @@
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">卷号:{{ detail.volume_number || '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">外部卷号:{{ detail.extern_volume_number || '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">成品编号:{{ detail.product_code || '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">成品色号:{{ detail.product_color_code || '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本行数量:{{ detail.item_weight != null ? detail.item_weight : '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">本行数量:{{ detail.item_weight != null ? detail.item_weight : '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本单匹数:{{ detail.order_roll != null ? detail.order_roll : '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本单数量:{{ detail.order_weight != null ? detail.order_weight : '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow">
|
||||
<text class="fabric-out-scanDetailLabel">本单数量:</text>
|
||||
<text class="fabric-out-scanDetailValue">{{ detail.order_weight != null ? detail.order_weight : '-' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -83,6 +83,7 @@ import { buildItemGroups } from '@/common/storeGoodsProcessOut';
|
||||
|
||||
const FINE_COLUMNS = [
|
||||
{ label: '卷号', key: 'volume_number', width: 110 },
|
||||
{ label: '外部卷号', key: 'extern_volume_number', width: 140 },
|
||||
{ label: '匹数', key: 'roll', width: 100 },
|
||||
{ label: '数量', key: 'weight', width: 130 },
|
||||
{ label: '条码', key: 'bar_code', width: 260 },
|
||||
|
||||
@ -6,19 +6,19 @@
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">卷号:{{ detail.volume_number || '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">外部卷号:{{ detail.extern_volume_number || '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">成品编号:{{ detail.product_code || '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">成品色号:{{ detail.product_color_code || '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本行匹数:{{ detail.item_roll != null ? detail.item_roll : '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">本行匹数:{{ detail.item_roll != null ? detail.item_roll : '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本行数量:{{ detail.item_weight != null ? detail.item_weight : '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本单匹数:{{ detail.order_roll != null ? detail.order_roll : '-' }}</text>
|
||||
</view>
|
||||
<view class="fabric-out-scanDetailRow">
|
||||
<text class="fabric-out-scanDetailLabel">本单数量:</text>
|
||||
<text class="fabric-out-scanDetailValue">{{ detail.order_weight != null ? detail.order_weight : '-' }}</text>
|
||||
<view class="fabric-out-scanDetailRow fabric-out-scanDetailRow--2col">
|
||||
<text class="fabric-out-scanDetailCell">本单匹数:{{ detail.order_roll != null ? detail.order_roll : '-' }}</text>
|
||||
<text class="fabric-out-scanDetailCell">本单数量:{{ detail.order_weight != null ? detail.order_weight : '-' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -44,6 +44,9 @@
|
||||
<text class="title" style="width: 200px">成品缸号:{{ CrockNo }}</text>
|
||||
<text class="title" style="width: 200px">成品卷号:{{ GoodsBillNo }}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width: 200px">外部卷号:{{ ExternVolumeNumber }}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title">{{ BillDataMessage }}</text>
|
||||
</u-form-item>
|
||||
@ -110,6 +113,7 @@ export default {
|
||||
GoodsCodeName: "",
|
||||
CrockNo: "",
|
||||
GoodsBillNo: "",
|
||||
ExternVolumeNumber: "",
|
||||
BillSumRoll: 0,
|
||||
BillSumQty: 0,
|
||||
BillSumMQty: 0,
|
||||
@ -367,6 +371,7 @@ export default {
|
||||
this.GoodsCodeName = aResultData.product_color_name;
|
||||
this.CrockNo = aResultData.dyelot_number;
|
||||
this.GoodsBillNo = aResultData.volume_number;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || '';
|
||||
this.QRBarCode = "";
|
||||
|
||||
if (aBarCodeDelStatus == 1) {
|
||||
|
||||
@ -40,6 +40,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
@ -113,6 +114,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
testFocus0: false,
|
||||
testFocus1: true,
|
||||
@ -281,6 +283,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.BillSumRoll = parseFloat(aResultData.BillSumRoll);
|
||||
this.BillSumQty = parseFloat(aResultData.BillSumQty);
|
||||
|
||||
@ -57,6 +57,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">本架盘前:{{BillSumOldRoll}}条</text>
|
||||
@ -146,6 +147,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
BillSumOldRoll: 0,
|
||||
BillSumNewRoll: 0,
|
||||
@ -594,6 +596,7 @@
|
||||
this.GoodsCodeName = aResultData.product_color_name;
|
||||
this.CrockNo = aResultData.dyelot_number;
|
||||
this.GoodsBillNo = aResultData.volume_number;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || '';
|
||||
this.GoodsQty = aResultData.weight / 10000;
|
||||
this.BillSumOldRoll = aResultData.warehouse_bin_check_before_roll/100;
|
||||
this.BillSumNewRoll = aResultData.warehouse_bin_check_roll/100;
|
||||
|
||||
@ -38,6 +38,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{ CrockNo }}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{ GoodsBillNo }}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ ExternVolumeNumber }}</text>
|
||||
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
@ -106,6 +107,7 @@ export default {
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
StoreStationNameFocus: false,
|
||||
BillSumOldRoll: 0,
|
||||
@ -251,6 +253,7 @@ export default {
|
||||
this.GoodsCodeName = aResultData.product_color_name;
|
||||
this.CrockNo = aResultData.dyelot_number;
|
||||
this.GoodsBillNo = aResultData.volume_number;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || '';
|
||||
this.GoodsQty = aResultData.weight / 10000;
|
||||
this.BillSumOldRoll = aResultData.warehouse_bin_check_before_roll / 100;
|
||||
this.BillSumNewRoll = aResultData.warehouse_bin_check_roll / 100;
|
||||
|
||||
@ -75,6 +75,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">本单条数:{{BillSumRoll}}条</text>
|
||||
@ -161,6 +162,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
testFocus0: false,
|
||||
testFocus1: true,
|
||||
@ -903,6 +905,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.BillSumRoll = parseFloat(aResultData.BillSumRoll);
|
||||
this.BillSumQty = parseFloat(aResultData.BillSumQty);
|
||||
|
||||
@ -40,6 +40,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
@ -115,6 +116,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
testFocus0: false,
|
||||
testFocus1: true,
|
||||
@ -283,6 +285,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.BillSumRoll = parseFloat(aResultData.BillSumRoll);
|
||||
this.BillSumQty = parseFloat(aResultData.BillSumQty);
|
||||
|
||||
@ -78,6 +78,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">本单条数:{{BillSumRoll}}条</text>
|
||||
@ -164,6 +165,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
testFocus0: false,
|
||||
testFocus1: true,
|
||||
@ -816,6 +818,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.BillSumRoll = parseFloat(aResultData.BillSumRoll);
|
||||
this.BillSumQty = parseFloat(aResultData.BillSumQty);
|
||||
|
||||
@ -40,6 +40,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
@ -113,6 +114,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
testFocus0: false,
|
||||
testFocus1: true,
|
||||
@ -281,6 +283,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.BillSumRoll = parseFloat(aResultData.BillSumRoll);
|
||||
this.BillSumQty = parseFloat(aResultData.BillSumQty);
|
||||
|
||||
@ -66,6 +66,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">本单条数:{{BillSumRoll}}条</text>
|
||||
@ -155,6 +156,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
FromStoreStationFocus: false,
|
||||
ToStoreStationFocus: true,
|
||||
@ -711,6 +713,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.GoodsCodeSumRoll = parseFloat(aResultData.GoodsCodeSumRoll);
|
||||
this.GoodsCodeSumQty = parseFloat(aResultData.GoodsCodeSumQty);
|
||||
|
||||
@ -48,6 +48,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{CrockNo}}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{GoodsBillNo}}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ExternVolumeNumber}}</text>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">本单条数:{{BillSumRoll}}条</text>
|
||||
@ -119,6 +120,7 @@
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
FromStoreStationFocus: false,
|
||||
ToStoreStationFocus: true,
|
||||
@ -360,6 +362,7 @@
|
||||
this.GoodsCodeName = aResultData.GoodsCodeName;
|
||||
this.CrockNo = aResultData.CrockNo;
|
||||
this.GoodsBillNo = aResultData.GoodsBillNo;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || aResultData.ExternVolumeNumber || '';
|
||||
this.GoodsQty = aResultData.GoodsQty;
|
||||
this.GoodsCodeSumRoll = parseFloat(aResultData.GoodsCodeSumRoll);
|
||||
this.GoodsCodeSumQty = parseFloat(aResultData.GoodsCodeSumQty);
|
||||
|
||||
@ -49,6 +49,7 @@
|
||||
<u-form-item>
|
||||
<text class="title" style="width:200px;">成品缸号:{{ CrockNo }}</text>
|
||||
<text class="title" style="width:200px;">缸号卷号:{{ GoodsBillNo }}</text>
|
||||
<text class="title" style="width:200px;">外部卷号:{{ ExternVolumeNumber }}</text>
|
||||
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
@ -110,6 +111,7 @@ export default {
|
||||
GoodsCodeName: '',
|
||||
CrockNo: '',
|
||||
GoodsBillNo: '',
|
||||
ExternVolumeNumber: '',
|
||||
GoodsQty: 0,
|
||||
FromStoreStationFocus: false,
|
||||
QRBarCodeFocus: false,
|
||||
@ -446,6 +448,7 @@ export default {
|
||||
this.GoodsCodeName = aResultData.product_color_name;
|
||||
this.CrockNo = aResultData.dyelot_number;
|
||||
this.GoodsBillNo = aResultData.volume_number;
|
||||
this.ExternVolumeNumber = aResultData.extern_volume_number || '';
|
||||
this.GoodsQty = aResultData.weight / 10000;
|
||||
this.StoreStationSumRoll = aResultData.warehouse_bin_roll / 100;
|
||||
this.StoreStationSumQty = aResultData.warehouse_bin_weight / 10000;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user