|
|
|
@ -25,9 +25,14 @@ const tankersbookingSchema = new mongoose.Schema({
|
|
|
|
|
dateOfOrder: { type: String, default: null },
|
|
|
|
|
typeofwater: { type: String, default: null },
|
|
|
|
|
capacity: { type: String, default: null },
|
|
|
|
|
address: { type: String, default: null },
|
|
|
|
|
amount : { type: String, default: "due" },
|
|
|
|
|
address: { type: String, default: null },
|
|
|
|
|
payment_status : { type: String, default: "due" },
|
|
|
|
|
//orderStatus: { type: String, default: "due" },
|
|
|
|
|
quantityDelivered: { type: String, default: null},
|
|
|
|
|
amount_paid: { type: String, default: null },
|
|
|
|
|
amount_due: { type: String, default: null },
|
|
|
|
|
payment_mode: { type: String, default: null },
|
|
|
|
|
remarks : { type: String, default: null },
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|