| | |
| | | <uni-popup ref="popup" type="bottom" @change="popupChangeHandler"> |
| | | <view class="content"> |
| | | <view class="search-condition"> |
| | | <view class="title"><text>出库通知单号: </text></view> |
| | | <view class="right"><input type="text" v-model="HBillNo" /></view> |
| | | <view class="title"><text>发货通知单号: </text></view> |
| | | <view class="right"><input type="text" v-model="HBillNo" @confirm="search" /></view> |
| | | </view> |
| | | <view class="search-condition"> |
| | | <view class="title"><text>客户: </text></view> |
| | | <view class="right"><input type="text" v-model="HCustomer" /></view> |
| | | <view class="right"><input type="text" v-model="HCustomer" @confirm="search" /></view> |
| | | </view> |
| | | <view class="search-condition"> |
| | | <view class="title"><text>销售员: </text></view> |
| | | <view class="right"><input type="text" v-model="HSeller" /></view> |
| | | <view class="right"><input type="text" v-model="HSeller" @confirm="search" /></view> |
| | | </view> |
| | | <view class="search-condition"> |
| | | <view class="title"> |
| | |
| | | } |
| | | |
| | | if (!CommonUtils.isEmpty(this.HBillNo)) { |
| | | sWhere += ` and 单据号 like N'%${this.HMaterialID}%'` |
| | | sWhere += ` and 单据号 like N'%${this.HBillNo}%'` |
| | | } |
| | | if (!CommonUtils.isEmpty(this.HCustomer)) { |
| | | sWhere += ` and 客户 like N'%${this.HCustomer}%'` |