|
|
|
@ -29960,10 +29960,10 @@ namespace TradeManageNew
|
|
|
|
|
/// 自提填写预约时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="Id"></param>
|
|
|
|
|
/// <param name="appointmentTime"></param>
|
|
|
|
|
/// <param name="AppointmentTime"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[WebMethod(EnableSession = true)]
|
|
|
|
|
public APIReturnModel SelfPickupOrderUsedSalePlatform(int Id, DateTime? appointmentTime)
|
|
|
|
|
public APIReturnModel AppointmentPickupOrderUsedSalePlatform(int Id, DateTime? AppointmentTime)
|
|
|
|
|
{
|
|
|
|
|
// PagesNew.Login(base.Session);
|
|
|
|
|
using (var db = new TradeUsedSale.Repositories.ErpDbContext())
|
|
|
|
@ -29991,7 +29991,7 @@ namespace TradeManageNew
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
db.DT_OrderUsedSalePlatform.Where(x => x.Id == Id)
|
|
|
|
|
.Set(x => x.AppointmentTime, value: appointmentTime)
|
|
|
|
|
.Set(x => x.AppointmentTime, value: AppointmentTime)
|
|
|
|
|
.Update();
|
|
|
|
|
|
|
|
|
|
return new APIReturnModel
|
|
|
|
|