move imported order number to comment

deepsource-autofix-76c6eb20
Dan Gowans 2022-12-08 14:24:22 -05:00
parent 3d8e3dfb2c
commit c442bdd331
2 changed files with 4 additions and 4 deletions

View File

@ -730,10 +730,10 @@ function importFromPrepaidCSV() {
: prepaidRow.CMPP_GST_DISINTERMENT);
addLotOccupancyTransaction({
lotOccupancyId,
externalReceiptNumber: prepaidRow.CMPP_ORDER_NO,
externalReceiptNumber: "",
transactionAmount,
transactionDateString: occupancyStartDateString,
transactionNote: ""
transactionNote: "Order Number: " + prepaidRow.CMPP_ORDER_NO
}, user);
if (prepaidRow.CMPP_REMARK1) {
addLotOccupancyComment({

View File

@ -1234,10 +1234,10 @@ function importFromPrepaidCSV() {
addLotOccupancyTransaction(
{
lotOccupancyId,
externalReceiptNumber: prepaidRow.CMPP_ORDER_NO,
externalReceiptNumber: "",
transactionAmount,
transactionDateString: occupancyStartDateString,
transactionNote: ""
transactionNote: "Order Number: " + prepaidRow.CMPP_ORDER_NO
},
user
);