|
@ -262,12 +262,17 @@ public class PrescriptionExpressageService {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 保存快递单号和增加处方物流记录为配送
|
|
|
* 1,保存快递单号增
|
|
|
* 2,加处方物流记录为配送
|
|
|
* 3,修改处方状态为配送配送中
|
|
|
*
|
|
|
* @param prescriptionExpressage
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public void updatePrescriptionExpressage(PrescriptionExpressage prescriptionExpressage) throws Exception {
|
|
|
//修改处方状态为配送配送中
|
|
|
prescriptionDao.updateStatus(prescriptionExpressage.getPrescriptionCode(),65);
|
|
|
|
|
|
//保存处方物流记录
|
|
|
prescriptionExpressageDao.save(prescriptionExpressage);
|
|
|
|