123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <template>
- <view class="warp">
- <view class="content">
- <view class="title">
- 基本信息
- </view>
- <view class="row">
- <view class="left">仓库</view>
- <view class="right">{{detailData.warehouseName}}</view>
- </view>
- <view class="row">
- <view class="left">合同编号</view>
- <view @click='slectcontractNo'>{{detailData.contractNo}}</view>
- </view>
- <view class="row">
- <view class="left">货名</view>
- <view class="right">{{detailData.goodsName}}</view>
- </view>
- <view class="row" style="text-align: right;">
- <view class="left">车牌号</view>
- <input v-model='detailData.carNumber' class="right-bottom" placeholder="输入车牌号"></input>
- </view>
- <view class="row">
- <view class="left">仓位号</view>
- <view @click='show1=true'>{{detailData.binNumber}}</view>
- <u-picker :range="positionList" range-key="binNumber" @confirm='binNumberpicker($event)' v-model="show1" mode="selector" >
- </u-picker>
- </view>
- <view class="row" style="text-align: right;">
- <view class="left">囤位号</view>
- <input class="right-bottom" v-model='detailData.storageNumber' placeholder="输入囤位号"></input>
- </view>
- <view class="row" @click="issueTypeClick">
- <view class="left">出库类型</view>
- <view class="right">{{issueTypeVal}}></view>
- </view>
- <view class="row">
- <view class="left">运输方式</view>
- <view class="right">{{detailData.outType}}</view>
- </view>
- <view v-if='detailData.outType=="汽运"||detailData.outType=="集装箱船"' class="row">
- <view class="left">箱号-1</view>
- <view class="right">{{detailData.qualityInspectionManagement.boxNo}}</view>
- </view>
- <view v-if='detailData.outType=="汽运"||detailData.outType=="集装箱船"' class="row">
- <view class="left">封号-1</view>
- <view class="right">{{detailData.qualityInspectionManagement.titleNo}}</view>
- </view>
- <view v-if='detailData.outType=="汽运"||detailData.outType=="集装箱船"'class="row">
- <view class="left">箱号-2</view>
- <view class="right">{{detailData.qualityInspectionManagement.boxNoOther}}</view>
- </view>
- <view v-if='detailData.outType=="汽运"||detailData.outType=="集装箱船"' class="row row-bottom">
- <view class="left">封号-2</view>
- <view class="right">{{detailData.qualityInspectionManagement.titleNoOther}}</view>
- </view>
- <view v-if='detailData.outType=="散船"' class="row">
- <view class="left">船名</view>
- <view class="right">{{detailData.qualityInspectionManagement.shipName}}</view>
- </view>
- <view v-if='detailData.outType=="散船"' class="row row-bottom">
- <view class="left">航次</view>
- <view class="right">{{detailData.qualityInspectionManagement.shipNumber}}</view>
- </view>
- <view v-if='detailData.outType=="火运"' class="row">
- <view class="left">车厢号-1</view>
- <view class="right">{{detailData.qualityInspectionManagement.wingNumber}}</view>
- </view>
- <view v-if='detailData.outType=="火运"' class="row row-bottom">
- <view class="left">车厢号-2</view>
- <view class="right">{{detailData.qualityInspectionManagement.wingNumberOther}}</view>
- </view>
- </view>
- <div class="content1">
- <view class="title">
- 检斤信息
- </view>
- <view class="row row-bottom">
- <view class="left">皮重(公斤)</view>
- <input v-model='detailData.tare' class="right-bottom" placeholder="输入皮重"></input>
- </view>
- </div>
- <!-- <u-select v-model="isShowContractNo" :list="contractNoList" @confirm="confirmContractNo"></u-select> -->
- <u-select v-model="isShowBinNo" :list="binNoList" @confirm="confirmBinNo"></u-select>
- <u-select v-model="isShowIssueType" :list="issueTypeList" @confirm="confirmIssueTypeNo"></u-select>
-
- <view class='footer'>
- <u-button type="primary" class="submit" @click="submit">提交</u-button>
- </view>
- </view>
- </template>
- <script>
- import helper from '@/common/helper.js';
- export default {
- data() {
- return {
- // isShowContractNo: false,
- isShowBinNo: false,
- isShowIssueType: false,
- issueTypeVal: "销售出库",
- detailData: {},
- id:'',
- cangId:'',
- show1:false,
- show:false,
- contractNoList: [],
- positionList:[],
- binNoList: [],
- issueTypeList: [{
- value: '1',
- label: '销售出库'
- },
- {
- value: '2',
- label: '移库出库'
- },
- {
- value: '3',
- label: '暂存出库'
- },
- {
- value: '4',
- label: '贸易服务出库'
- },
- ]
- }
- },
-
- onLoad(options) {
- this.id = options.id
- this.cangId = options.cangId
- this.getWeighingManagement()
- },
- onShow() {
- if(uni.getStorageSync('ContractNo')){
- this.detailData.contractNo=uni.getStorageSync('ContractNo').contractNo
- }
- },
- methods: {
- contractNopicker(e){
- this.detailData.goodsName=this.contractNoList[e[0]].goodsName
- this.detailData.contractNo=this.contractNoList[e[0]].contractNo
- },
- slectcontractNo(){
- uni.navigateTo({
- url:'/pages/erpbusiness/acquisitionInspection/selectContractNo'
- })
- },
- binNumberpicker(e){
- this.detailData.binNumber=this.positionList[e[0]].binNumber
- },
- getWeighingManagement(){
- this.$api.doRequest('get', '/weighingManagement/getWeighingManagement',
- {id: this.id}).then(res => {
- if(res.data.code==200){
- console.log(res)
- this.detailData = res.data.data
- }
- })
- this.$api.doRequest('get', '/warehouseBaseInfo/getWarehouse',
- {id: this.cangId}).then(res => {
- if(res.data.code==200){
- this.positionList = res.data.data.warehousePositionInfoList
- }
- })
- this.$api.doRequest('get', '/warehouseBaseInfo/selectContractNoList',{
- compId: '',
- flag:5
- }).then(res => {
- if(res.data.code==200){
- this.contractNoList = res.data.data
- }
- })
- },
- contractNoClick() {
- uni.navigateTo({
- url:"selectContractNo?compId="+this.detailData.compId
- })
- },
- issueTypeClick() {
- this.isShowIssueType = true
- },
- confirmContractNo(e) {},
- confirmBinNo(e) {},
- confirmIssueTypeNo(e) {
- console.log(e)
- this.detailData.inOutType=e[0].label
- this.issueTypeVal = e[0].label
- },
- submit(){
- if (!this.detailData.contractNo) {
- this.$api.msg('合同编号不能为空')
- return
- }
- if (!this.detailData.binNumber) {
- this.$api.msg('仓位号不能为空')
- return
- }
- if (!this.detailData.storageNumber) {
- this.$api.msg('囤位号不能为空')
- return
- }
- if (
- this.detailData.storageNumber.length < 1 ||
- this.detailData.storageNumber.length > 10
- ) {
- this.$api.msg('囤位号不超过10个字符!')
- return
- }
- if (!this.detailData.carNumber) {
- this.$api.msg('车牌号不能为空')
- return
- }
- if (this.detailData.carNumber.length != 7) {
- this.$api.msg('车牌号输入错误')
- return
- }
- if (!this.detailData.inOutType) {
- this.$api.msg('出库类型不能为空')
- return
- }
- this.detailData.weighingManagement=this.detailData
- var that = this
- uni.showModal({
- content:"确定提交检斤信息?",
- success(res) {
- if(res.confirm){
- that.$api.doRequest('post', '/warehouseInOutInfo/InOutWarehouse',
- that.detailData).then(res => {
- if(res.data.code==200){
- uni.setStorageSync('ContractNo','')
- that.$api.msg('提交成功')
- uni.navigateBack()
- }
- })
- }
- }
- })
- }
- },
- }
- </script>
- <style scoped lang="scss">
- uni-page-body {
- overflow: hidden;
- }
- .warp {
- margin: 20rpx;
- }
- .content,
- .content1 {
- border-radius: 20rpx;
- background: white;
- padding: 20rpx;
- .title {
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- }
- .row {
- display: flex;
- justify-content: space-between;
- padding: 31rpx 0;
- .right {
- font-size: 28rpx;
- color: #333333;
- }
- }
- .row-bottom {
- border: 0;
- .right-bottom {
- width: 300rpx;
- text-align: right;
- }
- }
- }
- .content1 {
- margin-top: 20rpx;
- }
- .footer{
- position: fixed;
- bottom:0;
- width:100%;
- padding:10px;
- background:#fff;
- .submit {
- width: 90%;
- background: #22C572;
- border-radius: 50rpx;
- }
- }
-
- .row input{
- font-size:14px;
- }
- </style>
|