You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.6 KiB
91 lines
2.6 KiB
<?php
|
|
include "T8_Authorization.php";
|
|
echo "ii";
|
|
?>
|
|
<script>
|
|
get_Auth();
|
|
window.addEventListener('message', function(event) {
|
|
if (event.origin === "http://localhost:3000" && (typeof event.data === "string")) {
|
|
// if (event.origin === "https://masada.com.tw" && (typeof event.data === "string")) {
|
|
var validation = event.data;
|
|
console.log("event");
|
|
console.log(validation);
|
|
|
|
// var corsurl = 'http://cors-anywhere.herokuapp.com/';
|
|
var apiurl = 'https://erp.masada.com.tw:780/twWebAPI/V1/SALDISPATCHLIST/GetERPData?pkValue=SS20230825001';
|
|
headerParam = {
|
|
CHI_Authorization: `${validation}`,
|
|
};
|
|
var body = [{
|
|
"name": "MasterTable",
|
|
"rows": [{
|
|
"BillNo": "Z001",
|
|
"BillDate": 20230930,
|
|
"OrgId": "1000",
|
|
"TypeId": "OPV",
|
|
"BizPartnerId": "03051501",
|
|
"CurrId": "RMB",
|
|
"CurrLAmount":5,
|
|
"TaxId": "ST005",
|
|
"PersonId": "M0012",
|
|
"DeptId": "220",
|
|
"CompId": "1001",
|
|
"CreditAgeDate": 20230930,
|
|
"RecBizPartnerId": "03051501",
|
|
|
|
}]
|
|
},
|
|
{
|
|
"name": "DetailTable",
|
|
"rows": [{
|
|
"BillNo": "Z001",
|
|
"RowCode": 1,
|
|
"RowNo": 1,
|
|
"ItemType": 0,
|
|
"MaterialId": "MX00000001",
|
|
"UnitId": "PCS",
|
|
"MaterialSpec": "",
|
|
"SQuantity": 10,
|
|
"SPrice": 141.18,
|
|
"OAmount": 1344.57,
|
|
"OTax": 67.23,
|
|
"OAmountWithTax": 1411.8,
|
|
"TaxId": "ST005"
|
|
},
|
|
{
|
|
"BillNo": "Z001",
|
|
"RowCode": 2,
|
|
"RowNo": 2,
|
|
"ItemType": 0,
|
|
"MaterialId": "MX00000001",
|
|
"UnitId": "PCS",
|
|
"MaterialSpec": "",
|
|
"SQuantity": 15,
|
|
"SPrice": 141.18,
|
|
"OAmount": 2016.86,
|
|
"OTax": 100.84,
|
|
"OAmountWithTax": 2117.7,
|
|
"TaxId": "ST005"
|
|
}
|
|
]
|
|
}
|
|
];
|
|
var json = JSON.stringify(body);
|
|
obj = {
|
|
type: 'GET',
|
|
// url: `${corsurl}${apiurl}`,
|
|
url: `${apiurl}`,
|
|
// dataType: 'json',
|
|
headers: headerParam,
|
|
// data: json,
|
|
// dataType: "json",
|
|
success: function(res) {
|
|
console.log(res.Status);
|
|
console.log(res.ErrorMsg);
|
|
console.log(res.Data);
|
|
}
|
|
};
|
|
jQuery.ajax(obj);
|
|
}
|
|
})
|
|
</script>
|