|
@@ -434,7 +434,11 @@
|
|
{{ model.changeAmount }}
|
|
{{ model.changeAmount }}
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :span="6"></a-col>
|
|
|
|
|
|
+ <a-col :lg="6" :md="12" :sm="24">
|
|
|
|
+ <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="二维码">
|
|
|
|
+ <vue-qr :text="model.number" :size="200" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
<a-col :span="6"></a-col>
|
|
<a-col :span="6"></a-col>
|
|
</a-row>
|
|
</a-row>
|
|
</section>
|
|
</section>
|
|
@@ -788,7 +792,11 @@
|
|
{{ model.changeAmount }}
|
|
{{ model.changeAmount }}
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :span="6"></a-col>
|
|
|
|
|
|
+ <a-col :lg="6" :md="12" :sm="24">
|
|
|
|
+ <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="二维码">
|
|
|
|
+ <vue-qr :text="model.number" :size="200" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
<a-col :span="6"></a-col>
|
|
<a-col :span="6"></a-col>
|
|
</a-row>
|
|
</a-row>
|
|
</section>
|
|
</section>
|
|
@@ -1474,7 +1482,8 @@ import FinancialDetail from '../../financial/dialog/FinancialDetail'
|
|
import JUpload from '@/components/jeecg/JUpload'
|
|
import JUpload from '@/components/jeecg/JUpload'
|
|
import Vue from 'vue'
|
|
import Vue from 'vue'
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
-
|
|
|
|
|
|
+// import QrcodeVue from 'qrcode.vue'
|
|
|
|
+import VueQr from 'vue-qr'
|
|
export default {
|
|
export default {
|
|
name: 'BillDetail',
|
|
name: 'BillDetail',
|
|
mixins: [JeecgListMixin],
|
|
mixins: [JeecgListMixin],
|
|
@@ -1482,6 +1491,8 @@ export default {
|
|
BillPrintIframe,
|
|
BillPrintIframe,
|
|
FinancialDetail,
|
|
FinancialDetail,
|
|
JUpload,
|
|
JUpload,
|
|
|
|
+ // QrcodeVue,
|
|
|
|
+ VueQr,
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -1588,29 +1599,48 @@ export default {
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
],
|
|
],
|
|
purchaseOrderColumns: [
|
|
purchaseOrderColumns: [
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
- { title: '多属性', dataIndex: 'sku' },
|
|
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '已采购', dataIndex: 'finishNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '税率(%)', dataIndex: 'taxRate' },
|
|
|
|
- { title: '税额', dataIndex: 'taxMoney' },
|
|
|
|
- { title: '价税合计', dataIndex: 'taxLastMoney' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
|
|
+ { title: '序列号', dataIndex: 'snList', width: 300 },
|
|
|
|
+ { title: '有效期', dataIndex: 'expirationDate', width: 90 },
|
|
|
|
+ { title: '多属性', dataIndex: 'sku', width: 90 },
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '已入库', dataIndex: 'finishNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+ { title: '税率(%)', dataIndex: 'taxRate', width: 90 },
|
|
|
|
+ { title: '税额', dataIndex: 'taxMoney', width: 90 },
|
|
|
|
+ { title: '价税合计', dataIndex: 'taxLastMoney', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际入库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '入库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '入库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '入库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '入库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '备注', dataIndex: 'remark', width: 90 },
|
|
],
|
|
],
|
|
purchaseInColumns: [
|
|
purchaseInColumns: [
|
|
{ title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
{ title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
- { title: '名称', dataIndex: 'name', width: 90 },
|
|
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
{ title: '规格', dataIndex: 'standard', width: 90 },
|
|
{ title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
|
|
{ title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
{ title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
@@ -1676,52 +1706,86 @@ export default {
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
],
|
|
],
|
|
saleOrderColumns: [
|
|
saleOrderColumns: [
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
- { title: '多属性', dataIndex: 'sku' },
|
|
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '已销售', dataIndex: 'finishNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '税率(%)', dataIndex: 'taxRate' },
|
|
|
|
- { title: '税额', dataIndex: 'taxMoney' },
|
|
|
|
- { title: '价税合计', dataIndex: 'taxLastMoney' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 60 },
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
|
|
+ { title: '序列号', dataIndex: 'snList', width: 300 },
|
|
|
|
+ { title: '有效期', dataIndex: 'expirationDate', width: 90 },
|
|
|
|
+ { title: '多属性', dataIndex: 'sku', width: 90 },
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '已出库', dataIndex: 'finishNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+ { title: '税率(%)', dataIndex: 'taxRate', width: 90 },
|
|
|
|
+ { title: '税额', dataIndex: 'taxMoney', width: 90 },
|
|
|
|
+ { title: '价税合计', dataIndex: 'taxLastMoney', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际出库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '出库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '出库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '出库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '出库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '备注', dataIndex: 'remark', width: 90 },
|
|
],
|
|
],
|
|
saleOutColumns: [
|
|
saleOutColumns: [
|
|
- { title: '仓库名称', dataIndex: 'depotName' },
|
|
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 60 },
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
- { title: '批号', dataIndex: 'batchNumber' },
|
|
|
|
- { title: '有效期', dataIndex: 'expirationDate' },
|
|
|
|
- { title: '多属性', dataIndex: 'sku' },
|
|
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '已出库', dataIndex: 'finishNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '税率(%)', dataIndex: 'taxRate' },
|
|
|
|
- { title: '税额', dataIndex: 'taxMoney' },
|
|
|
|
- { title: '价税合计', dataIndex: 'taxLastMoney' },
|
|
|
|
- { title: '重量', dataIndex: 'weight' },
|
|
|
|
- { title: '仓位货架', dataIndex: 'position' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '有效期', dataIndex: 'expirationDate', width: 90 },
|
|
|
|
+ { title: '多属性', dataIndex: 'sku', width: 90 },
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '已出库', dataIndex: 'finishNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+ { title: '税率(%)', dataIndex: 'taxRate', width: 90 },
|
|
|
|
+ { title: '税额', dataIndex: 'taxMoney', width: 90 },
|
|
|
|
+ { title: '价税合计', dataIndex: 'taxLastMoney', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际出库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '出库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '出库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '出库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '出库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '备注', dataIndex: 'remark', width: 90 },
|
|
],
|
|
],
|
|
saleBackColumns: [
|
|
saleBackColumns: [
|
|
{ title: '仓库名称', dataIndex: 'depotName' },
|
|
{ title: '仓库名称', dataIndex: 'depotName' },
|
|
@@ -1751,71 +1815,112 @@ export default {
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
{ title: '备注', dataIndex: 'remark' },
|
|
],
|
|
],
|
|
otherInColumns: [
|
|
otherInColumns: [
|
|
- { title: '仓库名称', dataIndex: 'depotName' },
|
|
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
- { title: '批号', dataIndex: 'batchNumber' },
|
|
|
|
- { title: '有效期', dataIndex: 'expirationDate' },
|
|
|
|
- { title: '多属性', dataIndex: 'sku' },
|
|
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '重量', dataIndex: 'weight' },
|
|
|
|
- { title: '仓位货架', dataIndex: 'position' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '有效期', dataIndex: 'expirationDate', width: 90 },
|
|
|
|
+ { title: '多属性', dataIndex: 'sku', width: 90 },
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际入库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '入库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '入库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '入库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '入库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
],
|
|
],
|
|
otherOutColumns: [
|
|
otherOutColumns: [
|
|
- { title: '仓库名称', dataIndex: 'depotName' },
|
|
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 60 },
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
{ title: '序列号', dataIndex: 'snList', width: 300 },
|
|
- { title: '批号', dataIndex: 'batchNumber' },
|
|
|
|
- { title: '有效期', dataIndex: 'expirationDate' },
|
|
|
|
- { title: '多属性', dataIndex: 'sku' },
|
|
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '重量', dataIndex: 'weight' },
|
|
|
|
- { title: '仓位货架', dataIndex: 'position' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '有效期', dataIndex: 'expirationDate', width: 90 },
|
|
|
|
+ { title: '多属性', dataIndex: 'sku', width: 90 },
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际出库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '出库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '出库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '出库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '出库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '备注', dataIndex: 'remark', width: 90 },
|
|
],
|
|
],
|
|
allocationOutColumns: [
|
|
allocationOutColumns: [
|
|
- { title: '仓库名称', dataIndex: 'depotName' },
|
|
|
|
- { title: '条码', dataIndex: 'barCode' },
|
|
|
|
- { title: '名称', dataIndex: 'name' },
|
|
|
|
- { title: '规格', dataIndex: 'standard' },
|
|
|
|
- { title: '型号', dataIndex: 'model' },
|
|
|
|
- { title: '颜色', dataIndex: 'color' },
|
|
|
|
- { title: '品牌', dataIndex: 'brand' },
|
|
|
|
- { title: '制造商', dataIndex: 'mfrs' },
|
|
|
|
- { title: '扩展信息', dataIndex: 'materialOther' },
|
|
|
|
- { title: '库存', dataIndex: 'stock' },
|
|
|
|
|
|
+ { title: '批次号', dataIndex: 'batchNumber', width: 90 },
|
|
|
|
+ { title: '名称', dataIndex: 'name', width: 115 },
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '生产日期', dataIndex: 'productionDate', width: 100 },
|
|
|
|
+ { title: '保质期', dataIndex: 'expiryNum', width: 60 },
|
|
|
|
+ { title: '商品条码', dataIndex: 'barCode', width: 90 },
|
|
|
|
+ { title: '仓库名称', dataIndex: 'depotName', width: 90 },
|
|
|
|
+ { title: '仓库货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '包装规格', dataIndex: 'unitName', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '规格', dataIndex: 'standard', width: 60 },
|
|
|
|
+ { title: '型号', dataIndex: 'model', width: 60 },
|
|
|
|
+ { title: '颜色', dataIndex: 'color', width: 60 },
|
|
|
|
+ { title: '品牌', dataIndex: 'brand', width: 90 },
|
|
|
|
+ { title: '制造商', dataIndex: 'mfrs', width: 90 },
|
|
|
|
+ { title: '扩展信息', dataIndex: 'materialOther', width: 90 },
|
|
|
|
+ { title: '库存', dataIndex: 'stock', width: 90 },
|
|
{ title: '调入仓库', dataIndex: 'anotherDepotName' },
|
|
{ title: '调入仓库', dataIndex: 'anotherDepotName' },
|
|
- { title: '单位', dataIndex: 'unit' },
|
|
|
|
|
|
+ { title: '单位', dataIndex: 'unit', width: 90 },
|
|
{ title: '多属性', dataIndex: 'sku' },
|
|
{ title: '多属性', dataIndex: 'sku' },
|
|
- { title: '数量', dataIndex: 'operNumber' },
|
|
|
|
- { title: '单价', dataIndex: 'unitPrice' },
|
|
|
|
- { title: '金额', dataIndex: 'allPrice' },
|
|
|
|
- { title: '重量', dataIndex: 'weight' },
|
|
|
|
- { title: '仓位货架', dataIndex: 'position' },
|
|
|
|
- { title: '备注', dataIndex: 'remark' },
|
|
|
|
|
|
+ { title: '数量', dataIndex: 'operNumber', width: 90 },
|
|
|
|
+ { title: '单价', dataIndex: 'unitPrice', width: 90 },
|
|
|
|
+ { title: '金额', dataIndex: 'allPrice', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '实际出库数量', dataIndex: 'actualQuantityInStorage', width: 115 },
|
|
|
|
+ { title: '出库差异', dataIndex: 'warehousingVariance', width: 90 },
|
|
|
|
+ { title: '出库差异原因', dataIndex: 'reasonOfDifference', width: 115 },
|
|
|
|
+ { title: '出库人', dataIndex: 'warehousingUser', width: 90 },
|
|
|
|
+ { title: '出库时间', dataIndex: 'warehousingTime', width: 90 },
|
|
|
|
+
|
|
|
|
+ { title: '重量', dataIndex: 'weight', width: 90 },
|
|
|
|
+ { title: '仓位货架', dataIndex: 'position', width: 90 },
|
|
|
|
+ { title: '备注', dataIndex: 'remark', width: 90 },
|
|
],
|
|
],
|
|
assembleColumns: [
|
|
assembleColumns: [
|
|
{ title: '商品类型', dataIndex: 'mType' },
|
|
{ title: '商品类型', dataIndex: 'mType' },
|