mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 23:11:24 +08:00
1. Optimized the problem of vertical display of data in the content button of the transaction management page and the approved transaction page. Now the transaction title and transaction content can be displayed normally
2. The approver drop-down box in the transaction add page can dynamically obtain the user id and username from the database and provide the username to the user for selection 3. The approver drop-down box has added a search function, a scroll bar, and a limit on the height of the drop-down box 4. You can obtain the id and username of the current user from the applicant input box, and display the username of the current user in the input box. The user has no grant to modify the contents of the input box
This commit is contained in:
@@ -40,7 +40,9 @@ public interface AffairMapper extends BaseMapper<Affair> {
|
||||
|
||||
|
||||
|
||||
@Select("SELECT * from t_affair where status=0 ")
|
||||
|
||||
|
||||
@Select("SELECT t_affair.applicant_id,t_affair.inspector_id,t_user.id,t_user.username from t_affair,t_user ")
|
||||
@ResultType(Affair.class)
|
||||
List<Affair> selectAffairs_NotApproved();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user