| | |
| | | <view style="width: 100%;">型号: {{item.model}}</view> |
| | | <view style="width: 100%;color: red;font-size: 3.1vw;">客户名称: {{item.supp}}</view> |
| | | <view style="width: 100%;color: red;font-size: 3.1vw;">开票客户: {{item.kpCstmrName}}</view> |
| | | <view style="width: 25%;">主数量: {{item.count}}</view> |
| | | <view style="width: 25%;color: red;font-size: 3.1vw;">辅数量: {{item.weight}}</view> |
| | | <view style="width: 25%;">库存: {{item.total}}</view> |
| | | <view style="width: 25%;">辅库存: {{item.totalWeight}}</view> |
| | | <!-- <view style="width: 25%;">主数量: {{item.count}}</view> --> |
| | | <view style="width: 25%;color: red;font-size: 3.1vw;">辅数量: {{item.allWeight}}</view> |
| | | <view style="width: 25%;">库存: {{item.allStock}}</view> |
| | | <view style="width: 25%;">剩余: {{item.lessStock}}</view> |
| | | <!-- <view style="width: 25%;">辅库存: {{item.totalWeight}}</view> --> |
| | | </swiper-item> |
| | | </swiper> |
| | | </view> |
| | |
| | | that.infoText.workNo = res.data[0].workNo |
| | | that.infoText.sourceLocNo = res.data[0].sourceLocNo |
| | | that.infoText.staNo = res.data[0].staNo |
| | | that.swiperList = res.data[0].matDtos |
| | | |
| | | let matDtos = res.data[0].matDtos; |
| | | |
| | | let allWeight = 0; |
| | | let allStock = 0; |
| | | matDtos.forEach((item) => { |
| | | allWeight += item.weight; |
| | | allStock += item.totalWeight; |
| | | }) |
| | | |
| | | let lessStock = allStock - allWeight; |
| | | |
| | | let matDto = matDtos[0]; |
| | | matDto.allWeight = allWeight; |
| | | matDto.allStock = allStock; |
| | | matDto.lessStock = lessStock; |
| | | that.swiperList = [matDto] |
| | | |
| | | // that.infoText.matnr = res.data[0].matDtos[0].matnr |
| | | // that.infoText.specs = res.data[0].matDtos[0].specs |
| | | // that.infoText.maknx = res.data[0].matDtos[0].maknx |