Browse Source

修复部分开单bug

dev-xx
qb 11 months ago
parent
commit
b80d335af4
  1. 3
      src/views/distribution/inventory/CreateOrder.vue
  2. 26
      src/views/waybill/CreateZeroOrder.vue

3
src/views/distribution/inventory/CreateOrder.vue

@ -1939,7 +1939,8 @@ const onLoad = async (idsArr = []) => {
details.query.shipperId = data.shipperClientId || '';
details.query.consigneeId = data.consigneeClientId || '';
details.query.destination = data.destinationArray;
details.query.destination = data.destinationArray || [];
details.query.departure = data.departureArray || [];
details.query.queryDestinationWarehouseName = data.destinationWarehouseName || '';
//
details.query.isPickUp = details.query.isPickUp ? details.query.isPickUp : 0;

26
src/views/waybill/CreateZeroOrder.vue

@ -1680,16 +1680,16 @@ const initPageInfo = async () => {
details.query.xianPay = isNumber(data.warehouseWaybill.xpay)
? Number(data.warehouseWaybill.xpay)
: data.warehouseWaybill.xpay;
: data.warehouseWaybill.xpay || 0;
details.query.huiPay = isNumber(data.warehouseWaybill.hpay)
? Number(data.warehouseWaybill.hpay)
: data.warehouseWaybill.hpay;
: data.warehouseWaybill.hpay || 0;
details.query.yuePay = isNumber(data.warehouseWaybill.ypay)
? Number(data.warehouseWaybill.ypay)
: data.warehouseWaybill.ypay;
: data.warehouseWaybill.ypay || 0;
details.query.daoPay = isNumber(data.warehouseWaybill.dpay)
? Number(data.warehouseWaybill.dpay)
: data.warehouseWaybill.dpay;
: data.warehouseWaybill.dpay || 0;
//
if (details.regionOptione.length !== 0) {
handleTranslationLocation('departure');
@ -1807,7 +1807,23 @@ const onLoad = async () => {
details.query.transportType = '1';
details.query.deliveryWay = '1';
details.query.urgency = '1';
details.query.destination = '';
// details.query.destination = '';
details.query.shipperId = data.shipperClientId || '';
details.query.consigneeId = data.consigneeClientId || '';
details.query.destination = data.destinationArray || [];
details.query.departure = data.departureArray || [];
details.query.queryDestinationWarehouseName = data.destinationWarehouseName || '';
//
details.query.isPickUp = details.query.isPickUp ? details.query.isPickUp : 0;
// --
details.query.pickupCompleteOrNot = details.query.pickupCompleteOrNot
? details.query.pickupCompleteOrNot
: 0;
// -- 线
details.query.trunklineCompleteOrNot = details.query.trunklineCompleteOrNot
? details.query.trunklineCompleteOrNot
: 0;
} catch (error) {
console.log('error :>> ', error);
} finally {

Loading…
Cancel
Save