11 lines
374 B
JavaScript
11 lines
374 B
JavaScript
import { moveRecordDown, moveRecordDownToBottom } from "./moveRecord.js";
|
|
export function moveLotTypeDown(lotTypeId) {
|
|
const success = moveRecordDown("LotTypes", lotTypeId);
|
|
return success;
|
|
}
|
|
export function moveLotTypeDownToBottom(lotTypeId) {
|
|
const success = moveRecordDownToBottom("LotTypes", lotTypeId);
|
|
return success;
|
|
}
|
|
export default moveLotTypeDown;
|