picker-db 3.6.0 → 3.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -504,7 +504,10 @@ module.exports = (connection) => {
|
|
|
504
504
|
companyPaymentBusiness: { type: Number, default: 0 },
|
|
505
505
|
companyPaymentDriver: { type: Number, default: 0 },
|
|
506
506
|
providerFee: { type: Number, min: 0 },
|
|
507
|
+
businessOrderAmount: { type: Number, min: 0 },
|
|
507
508
|
providerFeeNoMarkup: { type: Number, min: 0 },
|
|
509
|
+
operationBonus: { type: Number, default: 0 },
|
|
510
|
+
businessDeliveryFee: { type: Number, default: 0 },
|
|
508
511
|
},
|
|
509
512
|
pendingAmount: {
|
|
510
513
|
type: Number,
|
|
@@ -554,6 +557,10 @@ module.exports = (connection) => {
|
|
|
554
557
|
type: Number,
|
|
555
558
|
default: 0,
|
|
556
559
|
},
|
|
560
|
+
exactDistance: {
|
|
561
|
+
type: Number,
|
|
562
|
+
default: 0,
|
|
563
|
+
},
|
|
557
564
|
},
|
|
558
565
|
regionID: {
|
|
559
566
|
type: connection.base.Schema.ObjectId,
|
|
@@ -686,6 +693,13 @@ module.exports = (connection) => {
|
|
|
686
693
|
],
|
|
687
694
|
default: DELIVERY_CHARGE_TYPE.NONE,
|
|
688
695
|
},
|
|
696
|
+
isLinkToDeliver: {
|
|
697
|
+
type: Boolean,
|
|
698
|
+
},
|
|
699
|
+
usedGoogleAddress: {
|
|
700
|
+
type: String,
|
|
701
|
+
default: false
|
|
702
|
+
}
|
|
689
703
|
}, { timestamps: true });
|
|
690
704
|
|
|
691
705
|
BookingSchema.pre("save", function (next) {
|