Skip to content

Commit

Permalink
add inventoryStatus and InventoryType in medialinventory package
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudFonzam committed Jul 1, 2024
1 parent 7308385 commit 94935d8
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/main/java/org/isf/medicalinventory/model/InventoryStatus.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Open Hospital (www.open-hospital.org)
* Copyright © 2006-2024 Informatici Senza Frontiere (info@informaticisenzafrontiere.org)
*
* Open Hospital is a free and open source software for healthcare data management.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* https://www.gnu.org/licenses/gpl-3.0-standalone.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.isf.medicalinventory.model;


public enum InventoryStatus {
draft, validated, canceled, done;
}

27 changes: 27 additions & 0 deletions src/main/java/org/isf/medicalinventory/model/InventoryType.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* Open Hospital (www.open-hospital.org)
* Copyright © 2006-2024 Informatici Senza Frontiere (info@informaticisenzafrontiere.org)
*
* Open Hospital is a free and open source software for healthcare data management.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* https://www.gnu.org/licenses/gpl-3.0-standalone.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.isf.medicalinventory.model;


public enum InventoryType {
main, ward
}

0 comments on commit 94935d8

Please sign in to comment.