|
|
|
@ -53,6 +53,7 @@ |
|
|
|
<el-button @click="showRestoreNonPalletDialog()" type="warning" style="margin-left: 10px;"> |
|
|
|
恢复非栈板库存 |
|
|
|
</el-button> |
|
|
|
<el-button @click="showOtherInboundDialog()" type="success">创建新标签</el-button> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
|
|
|
|
@ -130,7 +131,7 @@ |
|
|
|
|
|
|
|
<!-- 其它入库标签打印弹窗 --> |
|
|
|
<el-dialog |
|
|
|
title="其它入库标签打印" |
|
|
|
title="创建新标签" |
|
|
|
:visible.sync="otherInboundVisible" |
|
|
|
width="450px" |
|
|
|
:close-on-click-modal="false"> |
|
|
|
@ -174,12 +175,12 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="包装数" prop="packageCount" class="form-item-vertical"> |
|
|
|
<el-form-item label="标签数" prop="packageCount" class="form-item-vertical"> |
|
|
|
<el-input |
|
|
|
v-model="otherInboundForm.packageCount" |
|
|
|
:min="1" |
|
|
|
style="width: 100%" |
|
|
|
placeholder="请输入包装数"> |
|
|
|
placeholder="请输入标签数"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
@ -207,7 +208,7 @@ |
|
|
|
</el-form> |
|
|
|
<div slot="footer" class="dialog-footer"> |
|
|
|
<el-button @click="otherInboundVisible = false">取消</el-button> |
|
|
|
<el-button type="primary" @click="createOtherInboundHU()" :loading="otherInboundLoading">保存并打印</el-button> |
|
|
|
<el-button type="primary" @click="createOtherInboundHU()" :loading="otherInboundLoading">创建标签</el-button> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
@ -1202,8 +1203,8 @@ export default { |
|
|
|
printLabelType = 'BIL标签' |
|
|
|
} |
|
|
|
|
|
|
|
// 创建成功后进行打印 |
|
|
|
await this.printHandlingUnits(data.unitIds, printLabelType) |
|
|
|
// // 创建成功后进行打印 |
|
|
|
// await this.printHandlingUnits(data.unitIds, printLabelType) |
|
|
|
|
|
|
|
this.otherInboundVisible = false |
|
|
|
this.getDataList() // 刷新列表 |
|
|
|
|